
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: min(310px, calc(100vw - 3rem));
    height: 90px;
    border-radius: 70px;
    padding: 0 30px;
}

.role-selection-container .btn-container .ac-btn {
    background-color: #027989;
    color: white;
    border: none;
    font-size: 24px;
    line-height: 1.1;
}

.role-selection-container .btn-container .ac-btn:hover {
    background-color: #016575;
    color: white;
}

.role-selection-container a {
    text-decoration: underline !important;
    cursor: pointer;
}

.schedule-exam-role-selection .btn-container button {
    font-size: 26px;
    line-height: 30px;
}

/* Two buttons now cover three audiences, so "Referral Source" needs a line of explanation
   attached to it rather than sitting the full hundred pixels the button row reserves below. */
.role-selection-choice {
    margin-bottom: 80px;
}

.role-selection-choice .btn-container {
    margin-bottom: 20px;
}

.role-selection-hint {
    font-size: 18px;
    opacity: .75;
}

/* ========== 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;
    }

}
