#main-content {
    padding-bottom: 0;
    min-width: 750px;
}

.auth-container {
    width: 100%;
    min-height: 100vh;
    background-image: url('/images/auth/register-bg1.webp?v=1.1');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-box {
    width: 475px;
    background-color: white;
    /* position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(0, -50%); */
    margin-left: 35%;
    padding: 50px 35px;
    border-radius: 15px;
}
.ruko-logo {
    display: block;
}
.ruko-register-title {
    font-size: 24px;
    line-height: 28px;
    margin-top: 20px;
    letter-spacing: -0.02em;
}
.auth-form {
    margin-top: 24px;
}
h2.register-label {
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.02em;
}
.dangers h2.register-label {
    color: #d32029;
}
.dangers .register-input {
    border-color: #d32029;
}
.error-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 6px;
    display:none;
}
.dangers .error-box {
    display: flex;
}
.error-icon {
    position: relative;
    top: 2px;
}
.input-error-message {
    font-size: 12px;
    margin-left: 4px;
    line-height: 16px;
    color: #d32029;
    letter-spacing: -0.02em;
}
.register-item {
    margin-top: 24px;
}
.input-div {
    width: 100%;
    position: relative;
    margin-top: 8px;
}
.register-input {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 4px;
    background-color: white;
    color: rgba(0,0,0,0.65);
    font-size: 16px;
    padding: 9px 11px;
    line-height: 20px;
    letter-spacing: -.02em;
}
.password-input, .confirm-password-input {
    padding-right: 40px;
}
.show-hide-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    cursor: pointer;
}
.hide-password {
    display: none;
}
.agree-to-policy {
    width: 100%;
    font-size: 14px;
    color: #707473;
    line-height: 20px;
    margin-top: 24px;
}

.agree-to-policy a:hover {
    text-decoration: underline;
}
.submit-box {
    width: 100%;
    margin-top: 24px;
}
.submit-btn {
    height: 48px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    color: white;
    background-color: rgb(0,112,213);
    cursor: pointer;
    border: 1px solid rgb(0,112,213);
    transition: all 0.15s;
}
.register-container .disable-submit {
    background: rgba(0,0,0,.04)!important;
    color: rgba(0,0,0,.25)!important;
    border: 1px solid rgba(0,0,0,.15)!important;
    cursor: unset;
}
.submit-btn:not(.disable-submit):hover,
.login-container .submit-btn:hover {
    background-color: rgb(36,144,227);
    border-color: rgb(36,144,227);
}
.link-to-login {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    line-height: 20px;
}
.link-to-login a:hover {
    text-decoration: underline;
}
.ruko-checkbox {
    width: 100%;
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ruko-checkbox input[type=checkbox] {
    position: relative;
    top: 6px;
    margin-right: 5px;
    transform: scale(1.25);
}
.ruko-checkbox label {
    color: rgba(0,0,0,0.65);
    cursor: pointer;
    letter-spacing: -0.02em;
}

/* login的css */
.login-container {
    background-image: url('/images/auth/login-bg1.jpg');
}
.login-container .agree-to-policy {
    font-size: 12px;
    line-height: 16px;
    margin-top: 12px;
}

.login-container .forgot-password {
    font-size: 12px;
    margin-top: 8px;
    display: inline-block;
}

.danger-container,
.success-container {
    min-height: 40px;
    width: 100%;
    border-radius: 2px;
    background-color: rgb(255,241,240);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 5px 10px 12px;
    margin-top: 24px;
}
.success-container {
    background-color: rgb(250,250,250);
}
.danger-container .error-icon,
.success-container .success-icon {
    position: relative;
    top: 0px;
}
.danger-notice,
.success-notice {
    margin-left: 8px;
    line-height: 1.5;
}
.success-container .success-notice {
    color: green;
}