.register {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    /*padding: 0 100px;*/
}
.register_box{
    padding: 24px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 9%) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.register_box h5{
    font-weight: 600;
}
.register_box form{
    width: 100%;
}
.form_box input{
    font-size: 15px;
    height: 42px;
    padding-bottom: 8px;
    margin-top: 17px;
}
.form_box input:focus{
    box-shadow: none;
    border: 1px solid var(--mainc);
}
.remember_forget{
    display: flex;
    justify-content: space-between;
    margin-top: 21px;
}
.remember_forget label{
    display: flex;
    align-items: center;
}
.remember_forget label input{
    transform: scale(1.1);
    margin-left: 7px;
}
.remember_forget p{
    font-size: 14px;
    color: #818181;
}
.remember_forget a{
    font-size: 14px;
    color: #818181;
}
.form_submiter{
    width: 100%;
    border: none;
    outline: none;
    height: 42px;
    background-color: var(--mainc);
    border-radius: 8px;
    color: #fff;
    margin-top: 15px;
}
.google_login_space{
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 30px;
    margin-bottom: 15px;
}
.google_login_space p{
    font-size: 14px;
    color: #b0b0b0;
    padding: 0 10px;
    background: #fff;
    position: relative;
}
.google_login_space::before{
    content: "";
    position: absolute;
    top: 55%;
    right: 0;
    width: 100%;
    height: 0.1px;
    background: #ededed;
}
.coogle_login{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.glogin_button{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--mainc);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    padding-top: 3px;
    margin-bottom: 35px;
}
.glogin_button:hover{
    color: #fff;
}
.coogle_login p{
    margin-bottom: 5px;
}