/* ============ ACCOUNT FORMS (register + preferences) ============ */

.form-control,
.form-select {
    background-color: #fff;
}

/* Password requirements checklist */
.password-requirements {
    font-size: 0.875rem;
}
.password-requirements li {
    margin-bottom: 0.25rem;
}
.password-requirements .valid {
    color: #198754;
}
.password-requirements .invalid {
    color: #6c757d;
}

/* Type-ahead suggestions (register only) */
.typeahead-wrapper {
    position: relative;
}
.typeahead-wrapper .dropdown-menu {
    position: absolute;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.typeahead-wrapper .dropdown-item {
    cursor: pointer;
    padding: 0.5rem 1rem;
}
.typeahead-wrapper .dropdown-item:hover,
.typeahead-wrapper .dropdown-item.active {
    background-color: #e9ecef;
}
.typeahead-wrapper .dropdown-item .country-code {
    color: #6c757d;
    font-size: 0.875em;
}
