.limit {
    width: 100%;
    margin: 0 auto;
    font: 16px/1.5 'PT Sans', sans-serif;
}
.login-container {
    width: 100%;
    min-height: 98vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*padding: 15px;*/

    /*background: #9053c7;*/
    /*background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);*/
    /*background: -o-linear-gradient(-135deg, #c850c0, #4158d0);*/
    /*background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);*/
    /*background: linear-gradient(-135deg, #c850c0, #4158d0);*/

    /*background: forestgreen;*/
    /*background: -webkit-linear-gradient(-135deg, #57b846, #4158d0);*/
    /*background: -o-linear-gradient(-135deg, #57b846, #4158d0);*/
    /*background: -moz-linear-gradient(-135deg, #57b846, #4158d0);*/
    /*background: linear-gradient(-135deg, #57b846, #4158d0);*/

    background: forestgreen;
    background: -webkit-linear-gradient(-135deg, limegreen, royalblue);
    background: -o-linear-gradient(-135deg, limegreen, royalblue);
    background: -moz-linear-gradient(-135deg, limegreen, royalblue);
    background: linear-gradient(-135deg, limegreen, royalblue);

}
.login-wrap {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px 195px 33px 95px;
    margin-top: -200px;
}
.login-form {
    width: 100%;
}
.login-title {
    font-size: 24px;
    color: #333333;
    line-height: 1.2;
    text-align: center;

    width: 100%;
    display: block;
    padding-bottom: 30px;
    margin-left: 50px;
}
.input-wrap {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
}
.input-focus {
    display: block;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 0px;
    color: rgba(87,184,70, 0.8);
}
.input {
    font-size: 15px;
    line-height: 1.5;
    color: #666666;

    display: block;
    width: 100%;
    background: #e6e6e6;
    height: 50px;
    border-radius: 25px;
    padding: 0 30px 0 68px;
}
.input-symbol {
    font-size: 15px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    border-radius: 25px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 35px;
    pointer-events: none;
    color: #666666;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
.login-btn-container {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    text-align: center
}
.login-btn {
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;

    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #57b846;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: -100px;
}
.login-btn:hover {
    background: #333333;
}
.login-error {
    margin-top: 15px;
    font-weight: bold;
    color: firebrick;
    display: flex;
    justify-content: right;
}
