
body {
    font-family: "Mulish", sans-serif;
}

p {
    text-align: center !important;
}

.role-selection-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 600px;
    padding: 100px 50px 0 50px;
    background-image: url('/img/assets/Home/gradient-bg.png');
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
}

.role-selection-container h1 {
    font-weight: bold;
    font-size: 45px;
    text-align: center;
    margin-bottom: 100px;
}

.role-selection-container .btn-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    gap: 30px;
}

.role-selection-container .btn-container button {
    font-size: 30px;
    font-weight: bold;
    width: 310px;
    height: 90px;
    border-radius: 70px;
    padding: 0 30px;
}

.role-selection-container a {
    text-decoration: underline !important;
    cursor: pointer;
}

.schedule-exam-role-selection .btn-container button {
    font-size: 26px;
    line-height: 30px;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 768px) {

    .role-selection-container .btn-container {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }

    .role-selection-container h1 {
        margin-bottom: 75px;
    }
}

@media (max-width: 385px) {

    .role-selection-container .btn-container button {
        font-size: 25px;
        font-weight: bold;
        width: 250px;
        height: 70px;
        border-radius: 50px;
    }

    .schedule-exam-role-selection .btn-container button {
        font-size: 20px;
        line-height: 24px;
    }

}
