.portal-wrapper {
    width:700px !important;
    max-width: 700px;
    padding: 40px;
    background: var(--grey-opacity);
    backdrop-filter: blur(10px);           
    -webkit-backdrop-filter: blur(10px);   
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}
@media (max-width:750px) {
    .portal-wrapper {
        width:90% !important;
    }
}
.role-selector {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}
.role-option {
    flex: 1;
    background: var(--grey-opacity); 
    backdrop-filter: blur(10px);           
    -webkit-backdrop-filter: blur(10px);   
    padding: 20px 20px;
    border-radius: 16px;
    transition: 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}
.role-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.role-option i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
@media (max-width: 576px) {
    .role-selector {
        flex-direction: column;
    }
}