* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Noto Sans KR', sans-serif; }
body {
    background-color: #f1f5f9; /* 조금 더 깊이감 있는 연그레이 배경 */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    border: 1px solid #e2e8f0;
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header h2 {
    font-size: 24px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 8px;
}
.login-header p {
    font-size: 14px;
    color: #64748b; /* 서브 텍스트 짙은 그레이 */
}
.input-group {
    margin-bottom: 20px;
    position: relative;
}
.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8; /* 아이콘 미디움 그레이 */
    font-size: 16px;
}
.input-wrapper input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
    outline: none;
    transition: all 0.2s;
}
/* 💡 입력창 클릭 시 요청하신 테마 컬러(#4a90e2)로 부드럽게 강조 */
.input-wrapper input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}
.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    cursor: pointer;
}
/* 💡 링크 텍스트 포인트 컬러 변경 */
.find-password {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
}
.find-password:hover { text-decoration: underline; }

/* 💡 메인 버튼: 지정해주신 #4a90e2 컬러 적용 */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-login:hover {
    background-color: #357abd; /* 마우스 올렸을 때 살짝 어두워지는 블루 */
}