.auth-page-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-page-section .auth-block .inner-box {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 40px 40px;
    z-index: 1;
}
.auth-page-section .auth-block .inner-box:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 8%);
    z-index: -1;
}
.auth-page-section .auth-block h3 {
    position: relative;
    display: block;
    font-size: 40px;
    line-height: 55px;
    font-weight: 700;
    color: #232323;
    margin-bottom: 40px;
}
.auth-page-section .auth-block p.information {
    margin-bottom: 20px;
}
.auth-page-section .auth-block button[type=submit] {
    width: 100%;
}
.auth-page-section form .form-group {
    position: relative;
    display: block;
    margin-bottom: 23px;
}
.auth-page-section form .form-group input:disabled {
    background-color: #d9d9d9!important;
}
.auth-page-section form .form-group label {
    position: relative;
    display: block;
    font-size: 15px;
    color: #232323;
    margin-bottom: 5px;
}
.auth-page-section form .form-group input[type='file'],
.auth-page-section form .form-group input[type='text'],
.auth-page-section form .form-group input[type='tel'],
.auth-page-section form .form-group input[type='password'],
.auth-page-section form .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 15px;
    color: #232323;
    background-color: #f8fbff;
    border-radius: 4px;
    transition: all 500ms ease!important;
}
.auth-page-section form .form-group input[type='file']:focus,
.auth-page-section form .form-group input[type='text']:focus,
.auth-page-section form .form-group input[type='tel']:focus,
.auth-page-section form .form-group input[type='password']:focus,
.auth-page-section form .form-group input[type='email']:focus {
    background-color: #FFFFFF;
    border: 1px solid #2ab6dd;
}
