*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background-color: #F1F5FF !important ;
    overflow-x: hidden;
    /* background: url(bg-image.png) center center; */
}
/************************************************ Login Page ******************************************************/
.form_field.input-group span {
    background: #3C57A4;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 17px;
    font-size: 1.3rem;
    border-radius: 30px;
}
button.submit_login a {
    color: #fff;
    text-decoration: none;
}
section.login_form form,
section.register_form form {    
    width: 400px;
    background: #fff;
    padding: 2rem;
    border-radius: 35px;
    padding-top: 6rem;
    text-align: center;
    position: relative;
}
section.register_form form{
    width:800px
}
section.register_form .user_icon{
    left: 50%;
    transform: translateX(-50%);
}
section.register_form .wrapper {
    display: flex;
}
section.register_form  .form_field {
    margin: 1rem;
    height: 50px;
}
section.register_form button.register_login {
    margin-top: 1rem;
}
section.register_form .form_field.input-group.phone_input {
    width: 705px;
}
.form_field.input-group input {
    background: rgb(148,163,205);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: "poppins", sans-serif;
    letter-spacing: 1px;
}
.form_field.input-group input::placeholder{
    color: #fff;
}
button.submit_login,
.register_login {
    border: none;
    padding: .5rem 2rem;
    background: #3C57A4;
    color: #fff;
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 22px;
}
section.login_form,
section.register_form {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
}
.form_field {
    margin: 1rem 0;
    height: 50px;
}
.user_icon {
    font-size: 5rem;
    background-color: #3C57A4;
    border-radius: 50%;
    width: 130px;
    padding: 4px;
    position: absolute;
    color: #fff;
    top: -63px;
    left: 50%;
    transform: translateX(-50%);
}
.user_icon img {
    width: 80px;
    margin-bottom: 1.5rem;
}
.take_action{
    display: flex;
    justify-content: space-between;
}
.take_action .forgot_password{
    border: none;
    background: none;
    /* margin-left: 7rem; */
    padding: .5rem 0;
}
span.remember_me {
    display: inline-block;
    padding-top: 8px;
}
.register {
    margin: 1rem 0 0;
}
.register a{
    text-decoration: none;
    color: #000;
    cursor: pointer;
}
@media (max-width:640px){
    section.register_form .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width:440px){
    section.register_form .form_field {
        margin: 8px;
        /* height: 40px; */
    }
    .form_field.input-group span {
        height: 100%;
        /* padding: 10px; */
        font-size: 16px;
    }
    .form_field.input-group input::placeholder{
        font-size: 14px;
    }
    .user_icon img {
        width: 54px;
        margin-bottom: 3.5rem;
    }
    .user_icon {
        width: 100px;
        height: 100px;
        top: -48px;
    }
}