body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.role-container h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.role-card {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 200px;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
    transition: 0.3s;
    cursor: pointer;
    padding-top: 40px;
    padding: 30px;

}

.role-card:hover,
.role-card.active {
    border: 2px solid #72cd3b;
    background-color: #f1eded;
}

.role-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #72cd3b;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.role-icon i {
    font-size: 20px;
    color: #fff;
}

.role-label {
    margin-top: 10px;
    font-size: 20px;
}

.continue-btn {
    margin-top: 20px;
    width: 100%;
    background-color: black;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
    color: white;
    border-radius: 25px;
}

.continue-btn:hover {
    background-color: #72cd3b;

}