.line-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    height: 1px; /* Thickness of the line */
    background-color: #000; /* Black color for better visibility */
    width: 100%; /* Ensures it stretches */
}

.or {
    font-size: 1rem;
    font-weight: bold;
    color: #666;
}


/* country code css*/

/* Style the dropdown for country selection */
#country_code_dropdown {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: absolute;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
}

#country_code_dropdown .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
}

#country_code_dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
}
