/* Login page specific styles */

.login-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #ffffff;
}

.login-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    max-width: 100%;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-button {
    color: #1A3A66;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-title {
    color: #1A3A66;
    font-family: 'League Spartan', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    flex-grow: 1;
}

.placeholder-div {
    width: 24px; /* Same width as back button for proper centering */
}

.welcome-section {
    margin-bottom: 40px;
}

.welcome-title {
    color: #1A3A66;
    font-family: 'League Spartan', sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.welcome-subtitle {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.login-input {
    background-color: #f5f5f0;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    width: 100%;
}

.password-input-container {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    font-size: 20px;
}

.forgot-password-container {
    text-align: right;
    margin-top: 10px;
}

.forgot-password {
    color: #1A3A66;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #0d2d55;
}

.login-button {
    background-color: #1A3A66;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 14px;
    font-family: 'League Spartan', sans-serif;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.login-button:hover {
    background-color: #0d2d55;
    color: white;
}

.login-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-container {
        padding: 15px;
    }
    
    .login-title {
        font-size: 22px;
    }
    
    .welcome-title {
        font-size: 20px;
    }
    
    .login-input {
        padding: 12px;
    }
    
    .login-button {
        padding: 12px;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .login-container {
        padding: 10px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .welcome-title {
        font-size: 18px;
    }
    
    .welcome-subtitle {
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .login-input {
        padding: 10px;
        font-size: 15px;
    }
}