/* themore 요원 로그인/회원가입 CSS */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    background: linear-gradient(135deg, #2c2218 0%, #3d2e1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-wrap {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* 로고 */
.login-logo {
    text-align: center;
    margin-bottom: 28px;
}
/* 요원 로그인/회원가입 로고 이미지 */
.login-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 14px;
    display: block;
}
.login-logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: #2c2218;
    margin-bottom: 4px;
}
.login-logo p {
    font-size: 13px;
    color: #666;
}

/* 에러 메시지 */
.error-msg {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #d95050;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
}

/* 폼 */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group input {
    padding: 13px 14px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
}

.form-group input:focus {
    border-color: #9B7B4E;
    box-shadow: 0 0 0 3px rgba(155,123,78,0.1);
}

.pw-wrap {
    position: relative;
}
.pw-wrap input {
    width: 100%;
    padding-right: 44px;
}
#togglePw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 13px;
    padding: 4px;
}

/* 로그인 버튼 */
.btn-login {
    margin-top: 6px;
    padding: 15px;
    background: #9B7B4E;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    -webkit-appearance: none;
}
.btn-login:hover { background: #8B6D3F; }
.btn-login:disabled { opacity: 0.7; cursor: not-allowed; }

/* 회원가입 링크 */
.register-link {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.register-link a {
    color: #9B7B4E;
    font-weight: 600;
    text-decoration: none;
}
.register-link a:hover { text-decoration: underline; }

.required { color: #d95050; }
