.password-toggle-btn {
    background: #e60000;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.password-toggle-btn:hover {
    background: #cc0000;
    color: #fff;
}

.password-toggle-btn:focus {
    box-shadow: none;
    outline: none;
}

/* Country selector styles */
.country-selector {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.selected-country {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* cursor: pointer; */
    /* background-color: #fff; */
    cursor: default; /* Changed from pointer to default - not clickable */
    background-color: #f8f9fa; /* Light gray background to indicate read-only */
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 8px;
}

.country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    width: 200px;
}

.country-dropdown.show {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    cursor: pointer;
}

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

.country-option img {
    margin-right: 8px;
}

.required { 
    color: #e60000; 
}

/* Password requirements styles */
.password-requirements {
    margin-top: 5px;
    font-size: 12px;
}

.requirement {
    display: block;
    margin-bottom: 2px;
}

.requirement.red {
    color: #e60000;
}

.requirement.green {
    color: #28a745;
} 