body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-card {
    background: white;
    width: 400px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #111;
}

.subtitle {
    color: #888;
    margin: 10px 0 30px;
    font-size: 0.95rem;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* 아이콘을 다시 살릴 경우를 대비해 패딩 유지 */
input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    background-color: #f8f9fa;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
}

input:focus {
    border-color: #007bff;
    background-color: #fff;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.admin-options {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.find-pw {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.find-pw:hover {
    color: #007bff;
    text-decoration: underline;
}

/* 에러 메시지 스타일 추가 */
.error-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #A32D2D;
    font-size: 0.85rem;
    margin-bottom: 18px;
    background: #FCEBEB;
    border: 0.5px solid #F09595;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: left;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}