body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #7af49f; /* Màu nền của toàn bộ trang */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/backgrounds/bg-login.jpg'); /* Hình nền phía sau */
    background-size: cover;
    background-repeat: no-repeat;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.2); /* Đặt màu nền trong suốt hơn với opacity 0.2 */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* Giảm độ tối của box-shadow */
    backdrop-filter: blur(10px); /* Hiệu ứng làm mờ phía sau form */
    border: 2px solid green; /* Viền xanh lá cây */
}

.login-box {
    width: 100%;
}

.logo {
    text-align: center;
}

.logo img {
    max-width: 100px;
    margin-bottom: 10px;
}

.logo h2 {
    font-size: 18px;
    color: #888;
}

.input-group {
    margin-bottom: 10px;
}

.input-group input {
    width: 95%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4); /* Đặt viền trong suốt hơn */
    background: rgba(255, 255, 255, 0.3); /* Nền input trong suốt hơn với opacity 0.3 */
    border-radius: 5px;
    color: #333;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff; /* Màu chữ trắng */
}

.remember-me input {
    margin-right: 10px;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #2db9ec;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.forgot-password {
    color: #2db9ec;
    text-decoration: none;
}

.client-login {
    text-align: center;
    margin-top: 20px;
}

.customer-login-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #f77a9e;
    border-radius: 5px;
    background-color: #f77a9e;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}
.footer-text {
        text-align: center;
        margin-top: 20px;
        font-size: 14px; /* Kích thước chữ */
        font-weight: 100; /* Bắt đầu với font-weight nhẹ */
        animation: fadeInBold 6s infinite; /* Hiệu ứng kéo dài 6 giây và lặp vô hạn */
    }

    @keyframes fadeInBold {
        0% {
            opacity: 0;
            font-weight: 100;
            color: red; /* Màu ban đầu */
        }
        25% {
            opacity: 0.5;
            font-weight: 400;
            color: blue; /* Màu chuyển tiếp */
        }
        50% {
            opacity: 1;
            font-weight: 700;
            color: green; /* Màu trung gian */
        }
        75% {
            opacity: 0.5;
            font-weight: 400;
            color: purple; /* Màu chuyển tiếp */
        }
        100% {
            opacity: 0;
            font-weight: 100;
            color: orange; /* Màu cuối cùng */
        }
    }