body {
    background: #708090 !important;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px #262b30;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    animation: slideIn 0.8s ease-out;
}

.login-card h4 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.login-card img {
    display: block;
    margin: 0 auto 20px;
    width: 100px;
    height: auto;
}

.login-card .btn-jumpcloud {
    background: #58626d;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-card .btn-jumpcloud:hover {
    background: #3f474f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.login-card .forgot-password {
    color: #2575fc;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.login-card .forgot-password:hover {
    color: #6a11cb;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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