body.login-body {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

h1 {
    color: #343a40;
}

.welcome-text {
    color: #6c757d;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 5px;
    font-size: 16px;
}

.btn {
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.forgot-password-text {
    font-size: 0.9rem;
    color: #6c757d;
}

.forgot-password-text a {
    text-decoration: none;
    color: #007bff;
}

.forgot-password-text a:hover {
    text-decoration: underline;
}

.welcome-message {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.welcome-message.show {
    display: block;
    opacity: 1;
}

.fade-out-slide-up {
    animation: fadeOutSlideUp 0.3s forwards;
}

@keyframes fadeOutSlideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.alert {
    border-radius: 5px;
}
