body {
    overflow-x: hidden;
    margin: 0;
    font-family: Roboto;
}

.login-form-page {
    width: 100vw;
    min-height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form-section {
    max-width: 759px;
    width: 100%;
    margin: auto;
    display: flex;
}

.leftimage {
    width: 41%;
    background: url(../images/matthew-henry-_XYtu0lcVWo-unsplash\ 1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.leftimage img {
    display: none;
}

.rightform {
    width: 59%;
    background: #ffffff;
    text-align: center;
}

.rightform .logo-image-form {
    padding: 30px 40px;
}

.rightform .logo-image-form h4 {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 23px;
    color: #777777;
    margin-top: 15px;
    margin-bottom: 43px;
    font-family: 'Roboto';
}

.rightform form {
    text-align: left;
}

.form-group label {
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
    display: inline-block;
}

.form-group {
    padding-bottom: 15px;
}

.form-group:last-child {
    padding-bottom: 0;
}

input[type=password],
input[type=text],
input[type=bumber],
input[type=email] {
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    box-sizing: border-box;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 2%);
    border-radius: 6px;
    height: 40px;
    width: 100%;
    padding: 0 14px;
    outline: none;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #777777;
    margin-top: 4px;
}

input[type="submit"] {
    background: #FD9728;
    border-radius: 6px;
    border: none;
    height: 44px;
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 9px;
}

.line {
    font-size: 18px;
    line-height: 21px;
    color: #777777;
    text-align: center;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.line span:before {
    content: '';
    width: 50%;
    right: calc( 50% + 30px);
    border: 1px solid #E2E2E2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.line span::after {
    content: '';
    width: 50%;
    left: calc( 50% + 30px);
    border: 1px solid #E2E2E2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.social-login a.btn {
    box-sizing: border-box;
    border-radius: 6px;
    display: flex;
    text-align: center;
    text-decoration: none;
    height: 44px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.social-login a.btn.fb {
    background: #475993;
    border: 1px solid #E2E2E2;
}

.social-login a.btn.google {
    background: #DD4B39;
    border: 1px solid #E2E2E2;
}

.social-login a.btn.twitter {
    background: #1DA1F2;
    border: 1px solid #E2E2E2;
}

.social-login a.btn img {
    padding-left: 10px;
}

.bottom-form span {
    font-size: 18px;
    line-height: 21px;
    color: #777777;
}

.bottom-form a {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    text-decoration-line: underline;
    color: #FD9728;
}