/* ==========================================================
   LOGIN PAGE - COMPLETE STYLES
   ========================================================== */

/* ===== PAGE HEADING SECTION ===== */
.login-page-content .page-heading {
    padding: 50px 0px;
    background: #f5f5f5;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.login-page-content .page-heading .breadcrumbs {
    text-transform: capitalize;
    margin-bottom: 16px;
}

.login-page-content .page-heading .breadcrumbs a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-page-content .page-heading .breadcrumbs a:hover {
    color: var(--yellow);
}

.login-page-content .page-heading .breadcrumbs span {
    margin: 0px 9px;
    color: #666;
}

.login-page-content .page-heading h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
    text-transform: capitalize;
}

/* ===== LOGIN SECTION ===== */
section.login {
    padding: 80px 0px;
    background: #ffffff;
}

section.login .content {
    width: 50%;
    margin: 0 auto;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 60px;
    background: #ffffff;
    border: 1px solid #eaeef2;
}

section.login .content h2 {
    margin-bottom: 40px;
    font-size: 32px;
    text-align: center;
    color: var(--blue);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

section.login .content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== LOGIN FORM ===== */
.login-form {
    max-width: 450px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.login-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 8px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="email"] {
    width: 100%;
    height: 50px;
    font-size: 15px;
    color: #333;
    border: 2px solid #e0e7ef;
    background: #ffffff;
    padding: 0 15px;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus,
.login-form input[type="email"]:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(251, 195, 51, 0.1);
}

.login-form input[type="text"]:hover,
.login-form input[type="password"]:hover,
.login-form input[type="email"]:hover {
    border-color: var(--blue);
}

/* Remember Me */
.login-form .login-remember {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.login-form .login-remember label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: #555;
    cursor: pointer;
}

.login-form .login-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--yellow);
}

/* Submit Button */
.login-form .login-submit {
    margin-bottom: 20px;
}

.login-form input[type="submit"] {
    background: var(--yellow);
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 30px;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(251, 195, 51, 0.3);
}

.login-form input[type="submit"]:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 63, 96, 0.3);
}

/* Extra Links */
.extra-links {
    margin-top: 20px;
    text-align: center;
}

.extra-links a {
    font-size: 14px;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.extra-links a:hover {
    color: var(--yellow);
    text-decoration: underline;
}

/* Signup Text */
.signup-text {
    display: block;
    margin-top: 25px;
    font-size: 15px;
    color: #555;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    padding-top: 20px;
    border-top: 1px solid #eaeef2;
}

.signup-text a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.signup-text a:hover {
    color: var(--blue);
    text-decoration: underline;
}

/* Error & Success Messages */
.error-message,
.success-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message a,
.success-message a {
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
}

.error-message a:hover,
.success-message a:hover {
    opacity: 0.8;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Desktop (1025px - 1366px) */
@media screen and (max-width: 1366px) {
    .login-page-content .page-heading h1 {
        font-size: 34px;
    }
    
    section.login .content {
        width: 60%;
        padding: 50px;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .login-page-content .page-heading h1 {
        font-size: 32px;
    }
    
    section.login .content {
        width: 70%;
        padding: 45px;
    }
    
    section.login .content h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
    section.login {
        padding: 60px 0;
    }
    
    section.login .content {
        width: 85%;
        padding: 40px 30px;
    }
    
    .login-page-content .page-heading h1 {
        font-size: 28px;
    }
    
    .login-form input[type="text"],
    .login-form input[type="password"] {
        height: 48px;
        font-size: 14px;
    }
    
    .login-form input[type="submit"] {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .login-page-content .page-heading {
        padding: 40px 0;
    }
    
    .login-page-content .page-heading h1 {
        font-size: 26px;
    }
    
    .login-page-content .page-heading .breadcrumbs {
        font-size: 13px;
    }
    
    section.login {
        padding: 40px 0;
    }
    
    section.login .content {
        width: 95%;
        padding: 30px 20px;
    }
    
    section.login .content h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .login-form label {
        font-size: 14px;
    }
    
    .login-form input[type="text"],
    .login-form input[type="password"] {
        height: 45px;
        font-size: 14px;
    }
    
    .login-form input[type="submit"] {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .extra-links a,
    .signup-text {
        font-size: 13px;
    }
}

/* Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    section.login .content {
        padding: 25px 15px;
    }
    
    section.login .content h2 {
        font-size: 22px;
    }
    
    .login-form input[type="text"],
    .login-form input[type="password"] {
        height: 42px;
        font-size: 13px;
    }
}