* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: #f4fbff;
}

.form-logo {
    width: 12.5rem;
    margin: auto 0rem;
    padding-bottom: 1rem;
}

.login-error-msg {
    width: 270px;
}

.card {
    overflow: hidden;
    border: 0 !important;
    height: 515px;
    border-radius: 20px !important;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.75);
    -moz-box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.75);
    box-shadow: 0px 0px 20px 0px rgba(51, 51, 51, 0.75);
}

.img-left {
    width: 50%;
    background: url(../images/neutrosys.jpg) center;
    background-size: cover;
}

.card-body {
    padding: 2rem;
    font-family: 'Calibri';
}

.title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.form-input {
    position: relative;
}

.form-input input {
    width: 100%;
    height: 45px;
    padding-left: 40px;
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #00000020;
    border-radius: 50px;
    outline: none;
    background: transparent;
}

.field-input-error {
    border: solid 1px #dc3545!important;
}

.login-error {
    padding-left: 40px;
    display: block;
}

.form-box .form-input {
    margin-bottom: 20px;
}

.form-input span {
    position: absolute;
    top: 10px;
    padding-left: 15px;
    color: #007bff;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff !important;
    border: 0px;
}

.form-box button[type="submit"] {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    background: #007bff;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    letter-spacing: .1rem;
    transition: 0.5s;
    padding: 12px;
}

.form-box button[type="submit"]:hover {
    background: #0069d9;
}

.forget-link,
.register-link {
    color: #007bff;
    font-weight: bold;
}

.forget-link:hover,
.register-link:hover {
    color: #0069d9;
    text-decoration: none;
}

@media(min-height: 560px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}