.loginForm{
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    width: 31rem;
    padding: 0 62px 5px 80px;
    margin-top: 110px;
    background-color: white;
}

    .loginForm h1{ 
        font-style: normal;
        font-weight: 900;
        font-size: 30px;
        line-height: 29px;
        text-align: center;
        color: #000000;
        margin-bottom: 24px;
    }

    .loginForm p{
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 27px;
        text-align: center;
    }

    .loginForm label {
        display: flex;
        flex-direction: column;
        color: #807c7c;
        margin-bottom: 16px;
        width: 80%;
        font-size: 12px;
    }

    .loginForm input, select, textarea{
        width: 463px;
        font-size: 16px;
        color: #55595c;
        background-color: #fff;
        border: 2px solid #E0E0E0;
        border-radius: 4px;
        padding-left: 8px;
        margin: 7px 0 4px 0;
    }

    .loginForm input{
        height: 42px;
    }

    .loginForm select{
        width: 477px;
        height: 45px;
    }

    .loginForm textarea{
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .loginForm textarea:focus, input:focus{
        border-color: #F3A83B;
    }

    .loginForm textarea:focus-visible, input:focus-visible{
        outline: none;
    }

    .loginForm input[type="submit"]{
        background: #f3a83b;
        width: 475px;
        border: none;
        font-size: 21px;
        color: white;
        border-radius: 3px;
    }

.form-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    margin: 10px;
}

.subtitle{
    display: flex;
    font-weight: normal;
    color: #979797;
    margin: 0;
}

.links{
    display: flex;
    font-size: 16px;
    color: #979797;
    cursor: pointer;
    padding-left: 6px;
}

.links:hover{
    color: #F3A83B;
}

.radio-btn-group{
    display: flex;
    flex-direction: column;
    justify-content: left;
}

.radio-btn-group .radio-btn-title{
    width: inherit;
    font-size: 20px;
}

.radio-btn-title input{
    height: inherit;
    width: inherit;
}

.loginForm .radioTitle{
    text-align: left;
    margin-bottom: 6px;
}

.agreement{
    display: flex;
    align-items: center;
}

.agreement .agreeCheckbox{
    height: 30px;
    width: 30px;
}

.agreement .checkboxText{
    font-weight: 400;
    font-size: 14px;
    color: rgb(100, 100, 100);
    padding-left: 10px;
    text-align: left;
    line-height: 16px;
}

#proCheckbox{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 22px;
    font-weight: bold;
}

#proCheckbox input{
    width: 50px;
}

@media screen and (max-width: 700px){
    .loginForm{
        width: 100%;
        box-sizing: border-box;
        padding: 5px;
    }

    .loginForm label{
        width: 100%;
    }

    .loginForm label > *{
        width: 95%;
    }

    #cta-button{
        width: 100%;
    }
}