body {
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 350px;
    text-align: center;
}

h2 { margin-bottom: 25px; color: #333; }

.input-group {
    text-align: left;
    margin-bottom: 15px;
}

label { display: block; margin-bottom: 5px; color: #666; font-size: 14px; }

input {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}

input:focus { 
    border-color: #ff9800; /* 포커스 시 밝은 주황색 */
    outline: none; 
}

button {
    width: 100%;
    padding: 12px;
    background-color: #ff8c00; /* 기본 버튼 주황색 (DarkOrange) */
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s; /* 색상 변화를 부드럽게 */
}

button:hover { 
    background-color: #e67e00; /* 마우스 올렸을 때 조금 더 진한 주황색 */
}

#message { 
    margin-top: 15px; 
    font-size: 13px; 
    color: #ff5722; /* 메시지 안내는 약간 붉은빛 도는 주황색으로 강조 */
}