/* 기본 초기화 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #1a1c23; /* 묵직한 다크 배경 */
    color: #e2e8f0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 전체 래퍼 */
.login-wrapper {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* 로그인 카드 박스 */
.login-container {
    background-color: #242630; /* 카드 배경색 */
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* 깊이감 있는 그림자 */
    text-align: center;
    border: 1px solid #333644;
}

/* 로고 영역 */
.login-logo-area {
    margin-bottom: 30px;
}

.login-logo-area img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* 원형 로고 */
    object-fit: cover;
    border: 3px solid #3b3e4f;
    margin-bottom: 10px;
}

.admin-badge {
    font-size: 14px;
    font-weight: 700;
    color: #a0aaec; /* 포인트 컬러 (연한 보라/블루) */
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 입력 필드 그룹 */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 18px;
}

.custom-input {
    width: 100%;
    height: 50px;
    background-color: #15171e;
    border: 1px solid #333644;
    border-radius: 8px;
    padding: 0 15px 0 45px; /* 아이콘 공간 확보 */
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.custom-input:focus {
    border-color: #a0aaec;
    box-shadow: 0 0 0 2px rgba(160, 170, 236, 0.2);
}

.custom-input::placeholder {
    color: #555b6e;
}

/* 로그인 버튼 */
.btn-login {
    width: 100%;
    height: 50px;
    background-color: #4f46e5; /* 브랜드 컬러 (조절 가능) */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #4338ca;
}

/* 하단 카피라이트 */
.footer-copy {
    margin-top: 30px;
    font-size: 12px;
    color: #555b6e;
}