.login-container {
    position: absolute;
    display: block;
    width: 100%;
    height: 100vh;
    overflow: auto;
    color: #222;
}

.login-content {
    position: relative;
    display: block;
    margin: 0px auto;
    width: calc(100% - 60px);
    font-size: 14px;
}

.login-logo {
    position: relative;
    display: block;
    /* width: 163px; */
    width: 272px;
    /* margin: 0px auto 50px; */
    margin: 0px auto 20px;
}

.login-quotes {
    position: relative;
    display: block;
    margin: 0px auto 25px;
    line-height: 20px;
    font-size: 14px;
    width: calc(100% - 40px);
    max-width: 318px;
    text-align: center;
}

.login-quotes span {
    position: relative;
    display: block;
    padding-top: 5px;
}

.login-form {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    max-width: 320px;
    margin: 0px auto;
    padding-bottom: 30px;
}

.login-input-group {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
}

.login-input-group.last {
    margin-bottom: 25px;
}

.login-input-text {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 0px;
    padding: 0px 15px 0px 50px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
}

.login-input-icon {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    padding-top: 15px;
    left: 0px;
    top: 0px;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    color: #5c5c5c;
}

.login-submit {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #84c315;
    /* background: linear-gradient(to right, #1f4719, #178a05, #84c315); */
    color: #222;
    border: 0px;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.login-submit:hover {
    background: #537a0d;
    color: #fff;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.login-forgot {
    position: relative;
    display: block;
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
    /* left: 0px; */
    /* bottom: 0px; */
}

.login-footer {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 50px;
    left: 0px;
    font-size: 14px;
    text-align: center;
}

.validation-container {
    position: relative;
    display: block;
}

.validation-item {
    position: relative;
    display: block;
    padding: 7px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: red;
    color: #fff;
}

.validation-item:last-child {
    margin-bottom: 20px;
}

.success-container {
    position: relative;
    display: block;
}

.success-item {
    position: relative;
    display: block;
    padding: 7px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: green;
    color: #fff;
}

.success-item:last-child {
    margin-bottom: 20px;
}

/* Desktops and laptops */
@media screen and (max-width : 1366px) {
    .login-form {
        padding-bottom: 60px;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {

}

/* Mobile */
@media screen and (max-width: 768px) {

}

@media screen and (max-width : 500px) {

}
