.main-box {
    margin: auto;
    /*position: absolute;*/
    /*top: 0; left: 0; bottom: 0; right: 0;*/
    transform: translateY(40%);
    width: 600px;
    /*border: 1px black solid;*/
    border-radius: 8px;
    /*-webkit-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.28);*/
    /*-moz-box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.28);*/
    /*box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.28);*/
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}

#error-message {
    color: red;
    text-align: center;
}

.header-box {
    background-color: #f0f3f3;
    height: 110px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 35px 30px 35px 30px;
}

.header-box span {
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #b2b5ba;
    line-height: 37px;
}

.header-box:after {
    content: ' ';
    clear: both;
}

.form-box {
    padding: 80px 100px 30px 100px;
}

.input-style {
    height: 40px;
    width: 400px;
    margin-bottom: 20px;
    background: #f7f8f9 no-repeat 7px 7px;
    border: 1px #ebebeb solid;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding-left: 45px;
}

#username {
    background-image: url("../images/user-icon.png");
}

#password {
    background-image: url("../images/lock-icon.png");
}

.password-handle {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    color: #b4b5b7;
    margin-bottom: 45px;
    margin-top: 15px;
}

#forgot-pass {
    color: red;
    text-decoration: underline;
}

.password-handle:after {
    content: ' ';
    clear: both;
}

#login-btn {
    height: 40px;
    width: 130px;
    border: 1px #000000 solid;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    display: block;
    margin: 0 auto 25px;
}

#login-btn:focus,
#login-btn:hover {
    background-color: #4c4d4f;
    color: #ffffff;
}

.google-sso-btn {
    padding: 0 12px;
    height: 40px;
    line-height: 40px;
    border: 1px #dadce0 solid;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #3c4043;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 25px;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.google-sso-btn:focus,
.google-sso-btn:hover {
    background-color: #f8f9fa;
    border-color: #d2d3d4;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    color: #3c4043;
}

.google-sso-btn .google-icon {
    flex-shrink: 0;
}

.password-handle label {
    margin-left: 10px;
}

.notificationMessage {
    margin-bottom: 50px;
    color: #4caf7f;
    text-align: center;
}
