/* User type selection cards */
.role-options {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

/* Responsive styles */
@media (max-width: 640px) {
    .role-options {
        flex-direction: column;
    }
}

.role-card {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.role-active {
    background-color: #f0fff4;
}

.role-description {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

 .social_button {
     display: block;
     width: 50%;
     height: 50px;
     margin-left: 25%;
     padding-top: 10px;
     color: #1E1E1E;
     border: 1px solid #D9D9D9;
     border-radius: 5px;
     font-weight: 700;
 }

/*--- POSITIONS - Mobile ---*/
@media (max-width: 991px) {
    .social_button {
        width: 100%;
        margin-left: 0%;
    }
}

.social_button img {
    width: 30px;
    height: 30px;
}

.social_divider {
    width: 50%;
    margin-left: 25%;
    display: flex;
    align-items: center;
    text-align: center;
    color: #1E1E1E;
}

.social_divider::before,
.social_divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
    margin: 0 10px;
}
