.signup-main {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.signup-wrapper {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    overflow-x: hidden;
    box-sizing: border-box;
}
.signup-footer {
    bottom: 50px;
    position: fixed;
    background: #fff;
    width: 100%;
    text-align: center;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
@media (min-width: 768px) {
    .signup-footer {
        bottom: 0;
        position: absolute;
        background: #fff;
        width: 100%;
        text-align: center;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        z-index: 2;
    }
}
.signup-title {
    text-align: center;
}

.dropdown-signup {
    position: relative;
    text-align: center;
    display: inline-block; /* Đảm bảo dropdown-signup chỉ chiếm chiều rộng của nội dung */
}

.dropdown-toggle-signup {
    cursor: pointer;
    display: inline-block; /* Đảm bảo dropdown-toggle căn giữa */
}

.dropdown-content-signup {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10000; /* Tăng z-index để chắc chắn không bị che */
    min-width: 200px; /* Tăng chiều rộng để dễ thấy */
    top: 100%; /* Đặt ngay dưới dropdown-toggle */
    left: 50%; /* Căn giữa theo chiều ngang */
    transform: translateX(-50%); /* Dịch chuyển trái 50% chiều rộng để căn giữa */
}

.dropdown-content-signup a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content-signup a:hover {
    background-color: #f1f1f1;
}

.dropdown-toggle-signup::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.alert-danger:empty {
    display: none;
}
.form-check-label a {
    color: #fd7e14;
}
.input-group-text i.fas {
    visibility: visible !important;
    opacity: 1 !important;
    color: #000 !important; /* Hoặc màu bạn muốn */
}
.form-control[type="text"], .form-control[type="password"] {
    -webkit-text-security: none !important;
    font-family: inherit !important;
}