#login_wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#login_wrap .login_form {
    max-width: 480px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#login_wrap .login_form .icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: antiquewhite;
    margin: 50px 0;
}

#login_wrap .login_form .icon img {
    width: 100%;
    object-fit: cover;
}

#login_wrap .login_form .input_form {
    width: 100%;
    margin-bottom: 30px;
}

#login_wrap .login_form .input_form .label {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

#login_wrap .login_form .input_form input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #E1E3E6;
    padding: 16px 20px;
}

#login_wrap .login_form .button_form {
    width: 100%;
}

#login_wrap .login_form .button_form button {
    width: 100%;
    border: none;
    background-color: #1A67E2;
    padding: 13px 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 20px 0;
    border-radius: 5px;
}

#login_wrap .login_form .recaptcha_form {
    display: none;
}

#login_wrap .login_form .recaptcha_form.on {
    display: block;
}