body{
    color:rgb(38, 56, 113);
}
.h100{
    min-height:100vh;
    width:100%;
    background:#171b3d;
    position:relative;
}
.logo-main{
    max-width:300px;
    width: 100%;
    margin: 0 auto 32px;
    text-align: center;
}
.login-column{
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.h100 .card,
.login-page .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 100px rgba(0,0,0,.2);
    padding: 40px;
    min-height: auto;
}
.card h1{
    font-size:32px;
    margin-bottom:10px;
    padding:0;
}
p.title{
    color:rgb(155, 165, 202);
    margin-bottom: 24px;
}
.login-page .form-up{
    margin-top: 4px;
}
.error-problem{
    background:#fe7f00;
    border-radius:5px;
    width:100%;
    padding:7px 10px;
    color:#fff;
    text-align: center;
    margin:20px 0;
    display: none;
}
.error-problem.is-visible{
    display: block;
}

.float-field{
    margin-bottom: 20px;
}
.float-input-box{
    position: relative;
}
.login-page input.float-input[type="email"],
.login-page input.float-input[type="password"],
.login-page input.float-input[type="text"]{
    width: 100%;
    min-width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #d3dfea;
    border-radius: 5px;
    font-size: 14px;
    line-height: 38px;
    color: rgb(38, 56, 113);
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, padding 0.2s ease;
}
.float-field.active .float-input,
.float-field .float-input:focus,
.float-field .float-input:-webkit-autofill{
    padding-top: 14px;
    padding-bottom: 6px;
    line-height: normal;
}
.float-field .float-input:focus{
    border-color: rgb(155, 165, 202);
    outline: none;
}
.login-page input.float-input:-webkit-autofill,
.login-page input.float-input:-webkit-autofill:hover,
.login-page input.float-input:-webkit-autofill:focus{
    -webkit-text-fill-color: rgb(38, 56, 113);
    box-shadow: 0 0 0 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
    animation-name: login-autofill-start;
    animation-duration: 0.01s;
}
@keyframes login-autofill-start {
    from { opacity: 1; }
    to { opacity: 1; }
}
.float-field label{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 14px;
    line-height: 1;
    color: rgb(155, 165, 202);
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.float-field.active label,
.float-field .float-input:focus + label,
.float-field .float-input:-webkit-autofill + label{
    top: 0;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgb(155, 165, 202);
    background: #fff;
    padding: 0 4px;
    left: 8px;
}
.float-field.invalid .float-input{
    border-color: #e53935;
}
.float-field.invalid label,
.float-field.invalid.active label,
.float-field.invalid .float-input:focus + label,
.float-field.invalid .float-input:-webkit-autofill + label{
    color: #e53935;
}
.float-field .field-hint{
    margin: 6px 0 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.3;
    color: #e53935;
}
.float-field.has-toggle .float-input{
    padding-right: 40px;
}
.float-field .password-toggle{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgb(155, 165, 202);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.float-field .password-toggle:hover,
.float-field .password-toggle:focus{
    color: rgb(38, 56, 113);
    outline: none;
}
.float-field .password-toggle svg{
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.card button.btn{
    background:#255bfb;
    text-transform: none;
}

.h100 .container{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform: translateY(-50%);
}

.h100 .container .card a.bottom{
    color:rgb(155, 165, 202);
}
.h100 .container .card a{
    color:#255bfb;
}

.login-page .card-body,
.h100 .card-body {
    padding: 0;
}
