.login-page{
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: #49a7a1;
}

.login-header{
        padding: 20px;
    border-bottom: 1px solid #c0c0c0;
    display: flex;
    background: #fff;
}

.login-header-icon{
    margin-right: 20px;
}

.login-header-text{
    font-weight: bold;
}

.login-content{
    padding: 20px;
    margin-top: 50px;
    background: #fff;
    height: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.login-content-title{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.login-content-title-main{
    font-size: 25px;
    font-weight: bold;
}

.login-content-title-sub{
    font-size: 12px;
}

.login-content-form-box{
    display: flex;
    flex-direction: column;
}

.login-form{
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.login-form-field{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.login-form-field label{
        color: #49a7a1;
    font-weight: bold;
    margin-bottom: 5px;
}

.login-form-field input{
    border: 1px solid #49a7a1;
    border-radius: 10px;
    height: 40px;
    outline: none;
}

.login-form-remember-forgot{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.login-form-remember{
    display: flex;
    align-items: center;
}

.login-form-remember input{
    border: 1px solid #49a7a1;
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.login-form-remember span{
    font-size: 14px;
}

.login-form-forgot a{
    color: #49a7a1;
    font-size: 14px;
    font-weight: bold;
}

.login-form-submit{
    display: flex;
    flex-direction: column;
}

.form-submit-login{
        background: #49a7a1;
    padding: 10px;
    align-items: center;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.login-form-register{
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.login-form-register a{
    margin-left: 5px;
    color: #49a7a1;
    font-weight: 500;
    text-decoration: none;
}

.login-form-or{
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.login-form .glogin{
    padding: 5px;
}

.glogin .g_login_lp{
    width: 100%;
}

.glogin .g_login_lp .google-btn{
    border: none;
    background: #fff;
    width: 100%;
}

.glogin .g_login_lp .google-btn img{
    height: 30px;
}

.register-page{
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    background: #49a7a1;
}

.register-header{
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #c0c0c0;
    display: flex;
}

.register-header-icon{
    margin-right: 20px;
}

.register-header-text{
    font-weight: bold;
}

.register-content{
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 50px;
    background: #fff;
    height: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.register-content-title{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.register-content-title-main{
    font-weight: bold;
    font-size: 25px;
}

.register-content-title-sub{
    font-size: 12px;
}

.register-form{
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.register-form-field{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.register-form-field label{
    color: #49a7a1;
    font-weight: bold;
    margin-bottom: 5px;
}

.register-form-field input{
        border: 1px solid #49a7a1;
    border-radius: 10px;
    height: 40px;
    outline: none;
}

.register-form-submit{
    display: flex;
    flex-direction: column;
}

.form-submit-register{
    background: #49a7a1;
    padding: 10px;
    align-items: center;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
}

.register-form-login{
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 30px;
}

.register-form-login a{
        margin-left: 5px;
    color: #49a7a1;
    font-weight: 500;
    text-decoration: none;
}

.register-form-or{
        text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.register-form-submit .glogin{
        padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    background: white;
    border: 1px solid #c0c0c0;
}