html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 중앙 정렬용 래퍼 */
.login-wrapper {
    height: calc(100% - 80px); /* 헤더 제외한 영역 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 로그인 박스 */
.login-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 300px;
    text-align: center;
}

.logoBox {
    margin-bottom: 20px;
}

.ud-login-form label {
    display: none;
}

.ud-login-form input {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #fdcf25;
    border: none;
    border-radius: 2px;
    font-weight: bold;
    font-size: 16px;
    color: #5c4033;
    cursor: pointer;
    margin-top: 20px;
}

.login-btn:hover {
    background-color: #f4be00;
}

.link-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 13px;
}

.link-left a,
.link-right a {
    color: #333;
    text-decoration: none;
}

.link-left a:hover,
.link-right a:hover {
    text-decoration: underline;
}
