body {
    margin: 0;
}
.login-main {
    height: 100vh;
}
.login-left {
    background: #fff;
}

.login-left .h1 {
    margin-top: 50px;
    font-weight: bold;
    font-size: 2.3rem;
}

.login-left .h2 {
    margin-top: 5px;
    font-size: 1.5rem;
    color: #999;
}

.login-right {
    position: relative;
}

.login-logo  {
    width: 50%;
}

.login-logo img {
    width: 100%;
}

.background-walk-y {
    background-repeat: no-repeat;
    background-position: 0 0%;
    animation-name: backgroundWalkY;
    animation-duration: 70s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    background-size: 100%;
}

@keyframes backgroundWalkY {
    0% {
        background-position: 0 100%; }
    100% {
        background-position: 0 0; }
}

.absolute-bottom-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.absolute-bottom-left .text-light {
    color: #e3eaef;
}

.p-4 {
    padding: 1.5rem;
}

.m-3 {
    margin: 1rem;
}

.absolute-bottom-left .p-5 {
    padding: 3rem;
}

.absolute-bottom-left .pb-3 {
    padding-bottom: 1rem;
}

.absolute-bottom-left .mb-5 {
    margin-bottom: 3rem;
}

.absolute-bottom-left h1 {
    font-size: 5rem;
    margin: 10px 0;
    letter-spacing:0.4rem;
}

.absolute-bottom-left h5 {
    font-size: 2rem;
    margin: 0;
    font-weight: normal;
    letter-spacing:0.2rem;
}

.absolute-bottom-left h6 {
    font-size: 1.5rem;
    margin-top: 80px;
    font-weight: normal;
    letter-spacing:0.1rem;
}

.login-form {
    margin-top: 30px;
}

.login-form .form-label {
    color: #0F8D57;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.login-form .form-input {
    height: 42px;
    padding: 0 15px;
    font-size: 14px;
    display: block;
    width: 100%;
    border: 1px solid #0F8D57;
    color: #0F8D57;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.login-btn {
    cursor: pointer;
    padding: .55rem 1.5rem;
    box-shadow: 0 2px 6px #acb5f6;
    background-color: #0F8D57;
    font-size: 12px;
    border-radius: .3rem;
    border: 1px solid transparent;
    color: #fff;
}

.copy {
    color: #6c757d;
    margin-top: 3rem;
    font-size: 12px;
    line-height: 20px;
}

