/* * {
    box-sizing: border-box;
} */

html,
body {
    height: 100%;
    margin: unset;
    overscroll-behavior: contain;
}

#login-page {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-container {
    /* padding: 50% 16px; */

}

#login-form {
    margin-top: 32px;
}

#login-button {
    font-size: 20px;
    color: white;
    font-weight: bold;
    background-color: #ff6336;
    height: 40px;
    width: 100%;
    border-width: 1px;
    border-color: #ff6336;
    border-style: solid;
    vertical-align: middle;
}

.password-container i {
    margin-left: -30px;
    cursor: pointer;
}

#toggle-password {
    position: absolute;
    bottom: 30px;
    right: 16px;
    margin-left: -30px;
    cursor: pointer;
    font-size: 24px;
}

.input-error {
    color: red;
}

.input-style {
    width: 100%;
    border-left-width: 0px;
    border-bottom-color: #ff6336 !important;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 5px;
    background-color: aliceblue;
    margin-bottom: 15px;
    height: 48px;
    box-sizing: border-box;
    font-size: 18px;
}



[class*="col-"] {
    float: left;
    width: 100%;
}

[class*="col-"]>* {
    display: block;
    width: 100%;
}

.col-11 {
    width: 91.66%;
}

/*For laptops and Tablets*/
@media only screen and (min-width: 768px) {
    .col-8-t {
        width: 66.66%;
    }
}