/* Login Page Specific Styles */

:root {
    --login-bg: #F8FAFC;
    --primary-color: #00AEEF;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border-color: #E2E8F0;
    --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--login-bg);
    /* Subtle dot pattern background */
    background-image: radial-gradient(#CBD5E1 0.5px, transparent 0.5px);
    background-size: 24px 24px;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 440px;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.brand-badge {
    background-color: #E0F2FE;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.welcome-section {
    margin-bottom: 32px;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.welcome-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 24px;
}

.label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.forgot-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.2s;
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
}

.input-wrapper i:not(.eye-icon) {
    color: var(--text-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 14px 12px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
}

.form-input::placeholder {
    color: #CBD5E1;
    font-weight: 400;
}

.eye-icon {
    cursor: pointer;
    color: var(--text-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.eye-icon:hover {
    color: var(--text-muted);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.remember-me input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.remember-me label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
}

.btn-login {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 174, 239, 0.2);
}

.btn-login:hover {
    background-color: #009BD6;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 174, 239, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login i {
    width: 18px;
    height: 18px;
}

.footer-links {
    margin-top: 40px;
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--text-muted);
}