.login-page {
    height: calc(100vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page .container {
    max-width: 420px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 70px 40px;
}

.login-page .container form label {
    font-size: 13px;
    color: #6c6c6c;
}

.login-page .form-right img {
    position: relative;
    z-index: 1;
}
.login-page .form-right:after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -67px;
    width: 300px;
    height: 300px;
    background: #20c99738;
    border-radius: 50%;
    box-shadow: 0 0 12px rgb(0 0 0 / 15%);
}
.login-page .form-right {
    border-left: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.login-page .form-right > p {
    color: #333;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 15px 0 0;
}

.login-page .form-left a {
    color: #333;
    text-decoration: underline;
}

.login-page h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin: 00px 0 30px !important;
    line-height: 1.4em;
}

.login-page .form-right img {
    max-width: 350px;
}

.login-page h1 {
    margin-bottom: 20px;
}

.login-page h1 img {
    width: 180px;
}


.login-page .container form input[type=text], .login-page .container form input[type=password] , .login-page .container form input[type=email] {
    margin-top: 5px;
    background: transparent;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.login-page .container form input[type=text]::placeholder, .login-page .container form input[type=password]::placeholder, .login-page .container form input[type=email]::placeholder{
    color: #bcbcbc;
}

.login-page .container form button.btn {
    width: 100%;
    font-size: 16px;
    padding: 11px;
    font-weight: bold;
}

.login-page .container form a.float-end {
    color: #565656;
    font-size: 14px;
}

.login-page .container form .link-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}

.login-page .container form .btn-wrap a {
    padding: 11px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #f2f2f2;
    margin-top: 10px;
    border-radius: 5px;
    color: #5e5e5e;
}

@media screen and (max-width:768px) {
    .login-page .container {
        border: 0;
        padding: 70px 20px;
    }
}