.login-body {
    background: linear-gradient(135deg, #28a745, #218838);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary {
    background-color: #28a745;
    border-color: #218838;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.form-control:focus {
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
    border-color: #28a745;
}

.logo-admin img {
    max-width: 100%;
    height: auto;
}

.topbar-main {
    height: 50;
    display: flex;
    justify-content: center;
    align-self: center;
}

@media (max-width: 768px) {
    .home-btn {
        display: none;
    }
}

body {
    background: #e9f5e9;
    /* Light green background for a fresh theme */
    color: #333;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #28a745;
    /* Green theme button */
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.home-btn {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-btn i {
    color: white;
}

/* Large screen view: Top-right corner */
@media (min-width: 576px) {
    .home-btn {
        top: 20px;
        right: 20px;
    }
}

/* Mobile view: Bottom-right corner */
@media (max-width: 575.98px) {
    .home-btn {
        bottom: 20px;
        right: 20px;
    }
}