body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(135deg, #192D52 0%, #2B4A73 50%, #1A2B4A 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #192D52;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/*         .form-control {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        } */

.form-control:focus {
    border-color: #192D52;
    box-shadow: 0 0 0 0.2rem rgba(25, 45, 82, 0.15);
}

.btn-login {
    background: linear-gradient(90deg, #192D52 0%, #2B4A73 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

    .btn-login:hover {
        background: linear-gradient(90deg, #1A2B4A 0%, #16253F 100%);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(25, 45, 82, 0.3);
        color: white;
    }

    .btn-login:focus {
        box-shadow: 0 0 0 0.2rem rgba(25, 45, 82, 0.25);
        color: white;
    }

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: #192D52;
    border-color: #192D52;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(25, 45, 82, 0.15);
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #e9ecef;
    }

    .divider span {
        background: white;
        color: #6c757d;
        padding: 0 1rem;
        font-size: 0.85rem;
    }

.btn-google {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    width: 100%;
    color: #333;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

    .btn-google:hover {
        background: #f8f9fa;
        border-color: #dee2e6;
        color: #333;
    }

.login-links {
    text-align: center;
}

    .login-links a {
        color: #192D52;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .login-links a:hover {
            color: #2B4A73;
            text-decoration: underline;
        }

.back-home {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .back-home:hover {
        color: white;
    }
