* {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
}
html, body {
    width: 100%;
    height: 100%;
    font-size: 16px;
}
body {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
    margin: 0 auto;
}

::-webkit-input-placeholder { /* Edge */
  color: #757575;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #757575;
}

::placeholder {
  color: #757575;
}

.container-full {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}
.background-login {
    width: 100%;
    height: 100%;
    background-image: url(img/bg-login.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
}
.block-login {
    width: 300px;
    height: auto;
    background: #fff;
    border-radius: 8px;
    display: block;
    margin: auto;
    z-index: 99;
}
.content-login {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}
.line-top {
    z-index: 1;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 100px;
}
.line-bottom {
    z-index: 1;
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 100px;
}
form {
    padding: 24px;
    z-index: 9;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.title {
    font-family: 'Dosis', sans-serif;
    font-size: 70px;
    font-weight: 900;
    text-align: center;
    color: #0844CE;
    line-height: normal;
}
.subtitle {
    font-family: 'Dosis', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    color: #0844CE;
    line-height: normal;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.row {
    padding: 5px 0;
}
label {
    display: block;
}
.input-content {
    position: relative;
}
input.form-input {
    height: 56px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    padding: 0 10px 0 42px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    color: #222222;
}
.icon-form {
    left: 10px;
    position: absolute;
    top: 0;
    width: 24px;
    height: 24px;
    bottom: 0;
    margin: auto;
}
.btn-login {
    width: 100%;
    height: 56px;
    border: 0;
    font-size: 1rem;
    background: #0844CE;
    background: linear-gradient(180deg, #0844CE 0%, #092A78 100%);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    margin: 10px 0 20px 0;
}
.icon-form svg {
    fill: #222;
}
.form-error {
    border: 2px solid #ff0000 !important;
}
.message-error {
    color: #ff0000;
    font-size: 12px;
}

@media only screen and (min-width: 320px) {


}

@media only screen and (min-width: 460px) {


}

@media only screen and (min-width: 768px) {
	.block-login {
	    width: 40%;
	    order: 2;
	}
	.background-login {
	    width: 60%;
	    position: relative;
	    order: 1;
	}

}

@media only screen and (min-width: 840px) {


}

@media only screen and (min-width: 960px) {
.content-login {
    max-width: 400px;
    margin: 0 auto;
}
.title {
    font-size: 90px;
}
.subtitle {
    font-size: 24px;
}

}

@media only screen and (min-width: 1200px) {
.line-top {
    width: 176px;
    top: -14px;
    right: -28px;
}
.line-bottom {
    width: 176px;
    left: -28px;
    bottom: -16px;
}

}

