/* ¸ðµç ½º¸¶Æ®Æù ÇØ»óµµ ´ëÀÀÀ» À§ÇÑ ¼³Á¤ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Malgun Gothic", "¸¼Àº °íµñ", sans-serif;
}

body {
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* ·Î±×ÀÎ ¹Ú½º: °¡·ÎÆøÀ» %·Î ¼³Á¤ÇÏ¿© ±â±âº° ´ëÀÀ */
.login-container {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* ·Î°í ÀÌ¹ÌÁö Å©±â ÃÖÀûÈ­ */
.logo-area {
    margin-bottom: 30px;
}

.logo-area img {
    width: 70%; /* È­¸é Å©±â¿¡ µû¶ó ·Î°í Å©±â ÀÚµ¿ Á¶Àý */
    max-width: 200px;
    height: auto;
}

.logo-area p {
    color: #a3228d;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

/* ÀÔ·ÂÃ¢ ½ºÅ¸ÀÏ: ÇÑ ¼Õ Á¶ÀÛÀÌ ÆíÇÏµµ·Ï Å©°Ô ¼³Á¤ */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
    padding-left: 5px;
}

.input-group input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px; /* ¾ÆÀÌÆù¿¡¼­ ÀÚµ¿ ÁÜ ¹æÁö¸¦ À§ÇØ 16px ±ÇÀå */
    background-color: #fafafa;
}

.input-group input:focus {
    outline: none;
    border-color: #a3228d;
    background-color: #fff;
}

/* ·Î±×ÀÎ ¹öÆ°: ·Î°íÀÇ ÀÚÁÖ»ö Àû¿ë */
.btn-login {
    width: 100%;
    height: 55px;
    background-color: #a3228d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.btn-login:active {
    background-color: #821b71;
}

.footer-text {
    margin-top: 25px;
    font-size: 11px;
    color: #ccc;
}