﻿body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', sans-serif;
}

.login-wrapper {
    min-height: 100vh;
}

.login-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
}

.login-title {
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    padding: 10px 15px;
}

    .form-control:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

.btn-login {
    height: 48px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-text {
    font-size: 13px;
    color: #94a3b8;
}

.forgot-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.alert {
    border-radius: 12px;
    border: none;
}

.animate-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
