body{
    margin: 0;
}

.login_Container{
    padding-bottom: 150px;
    background: #f9fbfc;
    overflow: hidden;
    min-height: 800px;
}

.FormField__Container{

}

.FormField_logobox {
    width: 50px;
    height: 50px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    overflow: hidden;
}

.FormField__Wrapper{
    overflow: hidden;
    width: 600px;
    margin: 30px auto 50px;
    border-radius: 15px;
    background: rgb(255, 255, 255);
    box-shadow: 1px 1px 10px 0 rgb(72 75 108/8%);
}
.FormField__InputBox{
    width: 100%;
    margin-top: 40px;
}
.FormField__InputBox .input-item{
    width: 100%;
    height: 48px;
    padding: 0px 12px;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 15px;
    transition: all 0.5s ease 0s;
    outline: none;
}
.FormField__FormGroup{
    padding: 0 50px;
}
.FormField__FormGroup .find-link-group{
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    margin-top: 10px;
}
.FormField__FormGroup .find-link-group .username{
    font-size: 13px;
    color: rgb(128, 128, 128);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}
.FormField__FormGroup .find-link-group .password{
    font-size: 13px;
    color: rgb(128, 128, 128);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-decoration: none;
}

.FormField__FormGroup .find-link-group > .password::before {
    background-color: rgb(215, 220, 224);
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    content: "";
    margin: 0px 5px;
    vertical-align: 3px;
}


.FormField__FormGroup .submit-button {
    width: 100%;
    height: 48px;
    margin-top: 40px;
    padding: 0px;
    background: #344b98;
    border: 1px solid #344b98;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(255, 255, 255);
    transition: all 0.5s ease 0s;
}

@media (max-width: 992px){
    .FormField__Wrapper {
        width: 90%;
    }
    .FormField__FormGroup{
        padding: 0 20px;
    }
}
