.main {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95%;
}

.background {
    width: 95%;
    height: 95%;
    background-image: url('/images/mobile_background_1.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
}

.container {
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 95%;
    box-sizing: border-box;
}

.top-section {
    margin-top: 5%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.content-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease-in-out;
}

.content-wrapper > * {
    width: 90%;
    margin: 0 auto;
}

.content-wrapper:nth-child(1) {
    left: 0%;
}

.content-wrapper:nth-child(2) {
    left: 100%;
}

.content-wrapper:nth-child(3) {
    left: 200%;
}

.middle-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: 24%; /* 원래 위치로 되돌림 */
}

.bottom-section {
    margin-top: 51%;
}

.logo {
    width: 220px;
    margin-bottom: 5px;
}

.logo_text {
    margin-top: -8px;
    margin-bottom: 20px;
    font-family: 'cute_b', sans-serif;
    font-weight: bold;
    color: #2572fa;
    font-size: 16px;
}

.input-container {
    position: relative;
    margin: 4px 0;
}

.input-container img.input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 24px; /* 아이콘의 크기 */
    height: 24px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px 10px 10px 45px; /* 아이콘 공간을 위해 왼쪽 패딩 추가 */
    border: 1px solid #ccc;
    border-radius: 7px;
    line-height: 0px;
    margin-bottom: 1px;
}

.login-btn {
    background-color: #2572fa;
    color: white;
    padding: 10px;
    width: 100%;
    height: 43px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 6px;
    font-weight: 600;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.links {
    margin: 10px 0;
}

.links a {
    color: #2572fa;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.down-btn {
    background-color: #ffeb00;
    color: black;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.terms {
    font-size: 0.8em;
    color: #d5d5d5;
    margin-top: 10px;
    text-indent: 4px;
}

.promo-container {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* 흰색 배경 */
    border-radius: 20px; /* 둥근 모서리 */
    padding: 12px 15px; /* 내부 여백 조정 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* 부드러운 그림자 효과 */
    max-width: 400px; /* 최대 너비 설정 */
    margin: 10px auto; /* 중앙 정렬 */
    transition: transform 0.2s ease-in-out; /* 호버 시 애니메이션 */
}

.promo-container:hover {
    transform: scale(1.03); /* 호버 시 약간 확대 */
}

/* 아이콘 자리 스타일 */
.promo-icon {
    width: 50px; /* 아이콘 크기 */
    height: 50px;
    border-radius: 12px; /* 아이콘의 둥근 모서리 */
    overflow: hidden; /* 이미지 자르기 */
    margin-right: 15px; /* 텍스트와의 간격 */
}

/* 텍스트 자리 스타일 */
.promo-text {
    flex: 1;
    font-size: 12px;
    color: #2572fa; /* 텍스트 색상 */
    font-weight: bold;
    line-height: 1.4; /* 줄 간격 조정 */
    background: linear-gradient(90deg, #f0f4ff 0%, #e6f7ff 100%); /* 텍스트 배경 그라데이션 */
    padding: 8px 5px; /* 내부 여백 추가 */
    border-radius: 10px; /* 둥근 모서리 */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* 내부 그림자 효과 */
    text-align: center; /* 텍스트 가운데 정렬 */
}