body, html{
    background-color: #5B8BA8;
    height:100%;
    width:100%;
    margin:0;
}
body {
    display:flex;
}
form {
    margin:auto;
}
.login-page {
    background-color: white;
    padding: 50px ;
    border-radius: 10px;
}

.logo-image {
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.login-btn {
    background-color: #27699C;
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.form-control {
    width: 400px;
}
.field-icon {
    float: right;
    margin-right: 5%;
    margin-top: -25px;
    /* position: relative; */
    font-size: 12px;
    color: gray;

}
form .input-field {
    flex-direction: row;
    column-gap: 10px;
}
.input-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}
.input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
    display: none;
}

.sub-title {
    font-size: 12px;
    font-weight: lighter;
}

.error-text {
    color: crimson;
}
.info-text{
    color:#5B8BA8;
    font-size: 12px;
}