.role-container {
    position: relative;
    height: 490px;
    background-size: cover;

}

.role-container.student {
    background-image: url("/static/onboarding/web/image/student_role.png");
}

.role-container.teacher {
    background-image: url("/static/onboarding/web/image/teacher_role.png");
}

.role-active-overlay {
    position: absolute;
    opacity: 0.7;

    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
}

.role-active-overlay.student {
    background: var(--bs-yellow);
}

.role-active-overlay.teacher {
    background: var(--bs-green);
}

.role-display {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
}

.role-display.active {
    color: white;
}

.manual-container {
    padding: 100px 270px;
    background-image: url("/static/web/manual_bg.png");
    background-size: cover;
}

.contact-container {
    padding: 60px;
    border: 1px solid black;
    border-radius: 8px;
}