body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e8f0fe, #fdfbfb);
    overflow-x: hidden;
}

.login-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.btn-login {
    background: linear-gradient(135deg, #2d6a4f, #2d6a4f);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(135deg, #2d6a4f, #2d6a4f);
    transform: translateY(-1px);
}

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

input::placeholder {
    color: #adb5bd;
}

.alert {
    border-radius: 10px;
}

.bg-primary {
    background-color: #2d6a4f !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    body {
        background: #f8f9fa;
    }

    .row {
        box-shadow: none;
    }

    .login-card {
        border-radius: 15px;
    }
}