.btn-link:hover {
    text-decoration: none;
}

#captchaImage {
    width: 223px;
    height: 40px;
}

.user-info-list li {
    display: flex; /* Sử dụng Flexbox */
    align-items: center; /* Căn giữa dọc */
    margin-bottom: 20px; /* Tăng khoảng cách giữa các hàng */
}

.user-info-list li span {
    min-width: 200px; /* Độ rộng cố định cho cột đầu tiên */
    text-align: left; /* Căn trái */
    color: #3b4056; /* Màu chữ cho span */
}

.user-info-list li strong {
    flex: 1; /* Cột thứ hai chiếm toàn bộ không gian còn lại */
    font-weight: bold;
    color: #3b4056; /* Màu chữ cho strong */
    font-family: Arial, sans-serif;
}

.footer {
    background-color: #666cff;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: #fff;
    /* font-family: "Saira", sans-serif; */
    /* font-size: 16px; */
}

.footer a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer p {
    margin: 5px 0;
}

/* Responsive cho mobile */
@media (max-width: 768px) {
    .footer {
        flex-direction: column; /* Hiển thị các phần theo cột */
        text-align: center;
    }

    .footer img {
        max-width: 120px; /* Thu nhỏ logo trên mobile */
    }

    .footer-content p {
        font-size: 12px;
        padding: 0 10px;
    }
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
        .input-group-btn
    ) {
    width: 100% !important;
}

.app-brand-text {
    flex-shrink: unset !important;
}

.authentication-wrapper.authentication-basic .authentication-inner {
    max-width: 400px !important;
}
