.base {
    height: 100%;
}
.background {
    background: url('/img/login.png') no-repeat left bottom #f0f2f5;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 560px;
}
.login {
    background: #fff;
    width: 560px;
    height: 100%;
    display: block;
    position: relative;
    float: left;
}
.content {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
}
strong {
    font-size: 1.125rem;
    line-height: 1.33;
    font-weight: bold;
    color: #3c4247;
    display: block;
}
span {
    font-size: 14px;
    line-height: 1.78;
    color: #848c98;
    display: block;
}

input[type=text],
input[type=password] {
    border-radius: 2px;
    border:  solid 1px #f0f2f5;
    background: #f0f2f5;
    position: relative;
    font-weight: 300;
    height: 56px;
    margin: 15px 0 0;
    display: block;
    width: 100%;
    padding: 0 15px;
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input.medium {
    width: 50%;
}
input:focus {
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.05);
}
input:disabled {
    background: #dadfe6;
    border-color: #dadfe6;
    cursor: not-allowed;
}
input:read-only {
    cursor: not-allowed;
    color: #575b5c;
}

input.error {
    border-color: #ff000d;
}
input.question {
    transition: padding-top 0.2s ease, margin-top 0.2s ease;
    overflow-x: hidden;
}
input.question.confirmed {
    padding: 17px 15px 0;
}
input.question + label {
    display: block;
    position: relative;
    white-space: nowrap;
    height: 0;
}
input.question:focus + label > span,
input.question:not([value='']) + label > span {
    top: -46px;
    font-size: 0.75rem;
}
input.question + label > span {
    font-weight: 300;
    margin: 0;
    position: absolute;
    color: #78838a;
    font-size: 0.875rem;
    top: -38px;
    left: 16px;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

span.text-error {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    color: #ff000d;
    overflow: hidden;
    display: block;
    line-height: 20px;
    transition: all 0.2s ease-out;
}
input.error + span.text-error {
    opacity: 1;
    max-height: 35px;
}
input + span.text-error {
    opacity: 0;
    max-height: 0;
}

.recover {
    font-size: 0.875rem;
    text-align: right;
    margin: 15px 0 30px;
}

.center {
    text-align: center;
    font-size: 0.875rem;
    color: #848c98;
    margin: 30px 0;
}

.button {
    margin: 0 auto;
    position: relative;
    display: block;
}
.button.medium {
    font-size: 1.125rem;
    min-width: 290px;
    height: 56px;
    line-height: 56px;
}

.logo {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 25%;
    border: none;
    text-decoration: none;
    width: 150px;
}

.error-login,
.success-login {
    border-radius: 3px;
    background-color: #ff000d;
    font-size: 14px;
    color:#fff;
    text-align: center;
    padding: 12px;
}
.success-login {
    background-color: #13ce51;
}
@media (max-width:756px) {
    .login {
        width: 100%;
        padding: 24px;
    }
}