.bc-popper-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    width: 320px;
    min-width: 320px;
}
.bc-popper-wrapper.show {
    display: block;
}
.country-list-wrapper {
    position: relative;
    cursor: pointer;
}
.bc-popover.country-list-popover {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    overflow: hidden;
}
.country-dropdown-menu {
    overflow: hidden;
}
.country-dropdown-menu ul {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}
.country-dropdown-menu ul li {
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
}
.country-dropdown-menu ul li .country-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.country-dropdown-menu ul li p:last-child {
    flex-shrink: 0;
    min-width: 50px;
    text-align: right;
}
.country-dropdown-menu ul li:hover {
    background-color: rgba(72, 115, 255, 0.1);
}
.country-dropdown-menu ul li.hidden {
    display: none !important;
}
.country-dropdown-menu ul li img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.input-phone .bc-form-item__content {
    position: relative;
}
.input-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}
.input-error.show {
    display: block;
}
.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
.login-error-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 77, 79, 0.08);
    border: 1px solid rgba(255, 77, 79, 0.3);
    border-radius: 8px;
    padding: 10px 16px;
    margin-top: 12px;
    margin-bottom: 4px;
}
.login-error-banner.hidden {
    display: none;
}
.login-error-banner svg {
    flex-shrink: 0;
}
.login-error-banner span {
    color: #ff4d4f;
    font-size: 14px;
    line-height: 1.4;
}
