body {
    background: #f0f7f7;
}

section.main_wrp {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.main_wrp:before {
    position: absolute;
    content: '';
    width: 45%;
    height: 100%;
    top: 0;
    left: 0;
    background: #005F37;
}

.main_wrp .container {
    position: relative;
}

.form-card {
    box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
    border-radius: 30px;
}

.form-view .form-title-caption {
    position: absolute;
    top: 4rem;
    text-align: right;
    padding: 22px 40px;
    background: #fff;
    border-radius: 0 14px 14px 0;
}

.main_wrp .form-view {
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.main_wrp .form-content {
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}

.form-style .btn {
    background: #005F37;
    background: -webkit-radial-gradient(center, #005F37, #07834f);
    background: -moz-radial-gradient(center, #005F37, #07834f);
    background: radial-gradient(ellipse at center, #07834f, #005F37);
}

.main_wrp .form-view h1 {
    color: #005F37;
    line-height: 24px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #005F37;
    margin-bottom: 0;
}

.main_wrp .form-view h1 small {
    font-size: 20px;
}

.form-style input {
    border: 0;
    height: 50px;
    border-radius: 0;
    background: #f0f7f7;
    background: #FFFFFF;
    box-shadow: 0px 0px 15px 2px rgb(0 0 0 / 10%);
    border-radius: 90px;
}

.form-group i.fa {
    position: absolute;
    font-size: 22px;
    left: 20px;
    top: 14px;
}

.form-style input:focus {
    box-shadow: none;
    outline: 0;
    background-color: #f0f7f7;
}

.sideline {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ccc;
}

button {
    font-size: 14px;
}

.sideline:before,
.sideline:after {
    content: '';
    border-top: 1px solid #ebebeb;
    margin: 0 20px 0 0;
    flex: 1 0 20px;
}

.sideline:after {
    margin: 0 0 0 20px;
}

@media (max-width: 767px) {
    .main_wrp .form-content {
        border-radius: 30px 30px 30px 30px;
    }
}