/* Custom Auth Form Styles - Inspired by CodePen design */
.auth-form-container {
    background: linear-gradient(135deg, #242e4d 0%, #897e79 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-form, .register-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.register-form {
    max-width: 500px;
}

.auth-form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #242e4d;
    font-weight: 300;
    font-size: 28px;
}

.flex-row {
    position: relative;
    margin-bottom: 20px;
}

.lf--input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background: #f5f6f8;
    transition: all 0.3s ease;
    outline: none;
}

.lf--input:focus {
    border-color: #35c3c1;
    background: #fff;
    box-shadow: 0 0 5px rgba(53, 195, 193, 0.3);
}

.lf--input::placeholder {
    color: #8f8f8f;
}

.lf--label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.lf--label svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lf--input:focus + .lf--label svg {
    opacity: 1;
}

.auth-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #35c3c1 0%, #00d6b7 100%);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #00d6b7 0%, #35c3c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(53, 195, 193, 0.3);
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: #242e4d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #35c3c1;
}

.form-check-input-custom {
    margin-right: 8px;
    accent-color: #35c3c1;
}

.form-check-label-custom {
    color: #333;
    font-size: 14px;
}

/* Remember me checkbox styling */
.remember-me-row {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.remember-me-row input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #35c3c1;
}

.remember-me-row label {
    font-size: 14px;
    color: #333;
}

/* Validation errors */
.text-danger {
    color: #dc3545 !important;
    font-size: 12px;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .login-form, .register-form {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .auth-form-title {
        font-size: 24px;
    }
}
