/* ==========================================
   Customer Login Page Styles - NetFix
   ========================================== */

:root {
    --primary-color: #00C9A7;
    --primary-dark: #00B08C;
    --secondary-color: #2D3436;
    --text-color: #636E72;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.login-hero-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding-top: 80px;
}

.login-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.login-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
}

.login-hero-title span {
    color: var(--primary-color);
}

.login-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.breadcrumb-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.breadcrumb-wrap a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-wrap a:hover {
    color: var(--primary-color);
}

.breadcrumb-wrap li {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-wrap .separator {
    color: rgba(255, 255, 255, 0.5);
}

.login-section {
    padding: 80px 0;
    background: var(--light-bg);
    min-height: 50vh;
}

.login-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
}

.login-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 15px;
    color: var(--text-color);
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.login-form .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.login-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.1);
}

.login-form .form-control::placeholder {
    color: #aaa;
}

.login-submit-btn {
    width: 100%;
    padding: 18px 35px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.login-footer p {
    color: var(--text-color);
    font-size: 15px;
    margin: 0;
}

.login-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--primary-dark);
}

.form-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 8px;
    display: block;
}

.remember-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.remember-me label {
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .login-hero-title {
        font-size: 28px;
    }
    .login-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    .login-title {
        font-size: 22px;
    }
}