/* 기존 image-holder 스타일 덮어쓰기 */
.page-content-container.login .welcome-image-container {
    position: relative;
    display: block;
    width: 100%;
}

.page-content-container.login .welcome-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-text-overlay {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 82%; /* JavaScript에서 동적으로 조정됨 */
    transform: translateY(-50%);
}

.welcome-title {
    font-size: 20px;
    font-weight: 700;
    color: #101828;
    white-space: nowrap;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #475467;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}