.custom-checkbox .checkmark {
    width: 20px;
}

.custom-checkbox {
    font-size: 0.6rem;
}

/* phone styling + flag */
.phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.phone-prefix img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.phone-prefix .arrow {
    font-size: 12px;
}

.phone-wrapper input {
    padding-left: 55px;
}


/* Dropdown */
.country-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 250px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 10;
    max-height: 250px;
    overflow-y: auto;
}

.country-search {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.country-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.country-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.country-item:hover {
    background: #f0f0f0;
}

.country-item img {
    width: 20px;
    height: 14px;
}