.register-section{
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 2vw 2vw 1.5vw;
}

.footer{
    height: 40vh;
}

.pageHeader{
    text-align: center;
}

.btnRow{
    margin: auto;
    display: flex;
    justify-content: space-around;
    width: 70vw;
}

.btnGroup{
    text-align: center;
    width: 30vw;
    padding: 2vw;
    display: inline-flex;
    flex-direction: column;
    border-radius: 1vw;
    background-color: #E7E9EB;
    align-items: center;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.regBtn{
    width: 15vw;
    background-color: royalblue!important;
}

@media only screen and (max-width: 600px)  {
    .register-section{
        padding: 10vw 2vw 5vw;
    }

    .pageHeader {
        text-align: center;
        font-size: 5vw;
        font-weight: bold;
    }

    .btnRow{
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btnGroup{
        width: 85vw;
    }

    .btnGroup h5{
        font-weight: bold;
    }

    .btnGroup:nth-of-type(1){
        margin-bottom: 5vw;
    }

    .regBtn{
        width: 25vw;
    }
    
    .backbutton{
        margin: 5vw auto!important;
        display: flex!important;
        font-size: 3vw!important;
    }
}