main{
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}
/*account*/
section#account {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto 80px auto;
    padding: 0 var(--page-padding);
    gap: 50px;
    align-items: flex-start;
}

section#account .login_wrap,
section#account .account_wrap {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px 32px 32px;
    width: calc(50% - 25px);
    min-width: 320px;
    box-sizing: border-box;
}
section#account .login_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
section#account .login_wrap form {
    width: 100%;
}
section#account .login_wrap input[type="text"],
section#account .login_wrap input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background: #fafbfc;
    transition: border 0.2s;
}
section#account .login_wrap input[type="text"].error,
section#account .login_wrap input[type="password"].error {
    border: 1.5px solid #e74c3c;
    background: #fff6f6;
}
section#account .login_wrap .error {
    color: #e74c3c;
    font-size: 0.95em;
    margin-bottom: 12px;
    min-height: 1.2em;
}
section#account .master_next_btn_wrap {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 12px;
}
section#account .btn {
    display: inline-block;
    background: #e38b1a;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 12px 32px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}
section#account .btn:hover {
    background: var(--color-orange);    
}
section#account .account_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
section#account .account_wrap h2 {
    font-size: 1.7em;
    font-weight: bold;
    margin-bottom: 18px;
    color: #222;
}
section#account .account_wrap p {
    font-size: 1.05em;
    margin-bottom: 18px;
    color: #444;
}
section#account .account_wrap .btn {
    background: #b52b27;
    margin-bottom: 18px;
}
section#account .account_wrap .btn:hover {
    background: var(--color-red);    
}
section#account ul {
    margin: 18px 0 0 0;
    padding: 0 0 0 18px;
    text-align: left;
}
section#account ul li {
    font-size: 0.98em;
    color: #666;
    margin-bottom: 6px;
}





@media screen and (max-width: 767px) {
    section#account {
        margin-top: 16px;
        gap: 18px;
    }
    section#account .login_wrap,
    section#account .account_wrap {
        width: 100%;
        min-width: 0;
        padding: 18px 4px 16px 4px;
        margin: 0 auto;
    }
    section#account .account_wrap h2 {
        font-size: 1.2em;
    }
    section#account .btn {
        font-size: 1em;
        padding: 10px 0;
        width: 100%;
    }
}