/* 관리자 로그인 페이지 스타일 */

/* 기본 리셋 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header__logo {
    height: 48px;
    margin-bottom: 16px;
}

.login-header__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.login-header__desc {
    font-size: 14px;
    color: #888;
}

.login-form__group {
    margin-bottom: 16px;
}

.login-form__label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-bottom: 6px;
}

.login-form__input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.login-form__input:focus {
    outline: none;
    border-color: #1a1a2e;
}

.login-form__btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: opacity 0.2s;
}

.login-form__btn:hover {
    opacity: 0.9;
}

.login-form__btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.login-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.login-footer a {
    color: #1a1a2e;
    text-decoration: none;
}
