body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(145deg, #f0f8ffe5, #e0f7fa);
    background-size: 400% 400%;
    animation: gradientMove 5s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card {
    border: none;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-control {
    font-size: 14px;
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid #d1d9e6;
    transition: 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.15);
}

.input-form-error {
    font-size: 12px;
    color: #e53935;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0.5rem;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

.form-check-label {
    font-size: 13px;
}

.login-logo img {
    width: 9rem;
}

.alert {
    font-size: 13px;
}

.form-label-link {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 468px) {
    body {
        padding: 1rem;
    }
    .card-body{
        padding: 0 !important;
    }

    .form-label, .form-control {
        font-size: 12px;
    }

    .input-form-error{
        font-size: 10px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 0.65rem;
    }

    .form-check-label, .alert, .form-label-link {
        font-size: 11px;
    }
}