/* Signup page specific styles */

/* body { background: #000 !important; } */

.country-select-wrapper {
    position: relative;
}

.country-search {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.country-dropdown {
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
}

.country-option {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.country-option:hover {
    background-color: #f3f4f6;
}

.country-option .flag {
    margin-right: 0.5rem;
}

.country-option .code {
    color: #6b7280;
    font-size: 0.9rem;
}

.phone-wrapper {
    display: flex;
    gap: 0.5rem;
}

.phone-wrapper .country-prefix {
    width: 5rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    background-color: #f3f4f6;
    text-align: center;
    flex-shrink: 0;
}

.phone-wrapper .phone-number {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
}

.feedback-text {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Country dropdown */
.country-select-wrapper {
    position: relative;
}

#countryDropdown {
    position: absolute;
    width: 100%;
    z-index: 10;
    flex-direction: column;
}

#countryDropdown.show {
    display: flex !important;
}

.country-option {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.country-option:hover {
    background-color: #f3f4f6;
}

.country-option .code {
    color: #6b7280;
    font-size: 0.9rem;
}

#countrySearch {
    padding: 0.5rem;
    border-bottom: 1px solid #ddd;
}

/* Password toggle */
.relative {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #6b7280;
    font-size: 1.1rem;
}

.toggle-password:hover {
    color: #374151;
}

.pr-10 {
    padding-right: 2.5rem; /* space for the eye */
}

#submitBtn:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
}


