/* 전체 콘텐츠 스타일 */
main.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh; /* 화면 전체 높이를 기준으로 레이아웃 구성 */
    padding: 0;
}
.carousel-inner {
    height: 100%; /* 부모 컨테이너 높이에 맞게 */
}
.carousel-item {
    height: 100%; /* carousel-inner의 높이를 채움 */
}
/* Carousel 스타일 */
#mainCarousel {
    width: 100%;
    height: 50vh; /* 화면 높이의 절반 */
    overflow: hidden;
}

#mainCarousel img {
    object-fit: contain; /* 이미지를 Carousel 높이에 맞추면서 비율 유지 */
    width: 100%; /* 가로 전체 채우기 */
    height: 100%; /* 세로 전체 채우기 */
}

/* 문구 스타일 */
.welcome-text {
    text-align: center;
    color: #6c757d;
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
}

/* 버튼 섹션 스타일 */
.auth-buttons {
    display: flex;
    flex-direction: column; /* 수직 정렬 */
    align-items: center; /* 중앙 정렬 */
    width: 80%; /* 버튼 컨테이너 너비 */
    margin-top: 30px; /* 위쪽 여백 */
}

.auth-buttons .btn {
    width: 100%; /* 버튼 너비를 컨테이너에 맞춤 */
    max-width: 300px; /* 버튼 최대 너비 */
    padding: 15px;
    font-size: 16px;
    border-radius: 8px; /* 모서리 둥글게 */
}

.btn-primary {
    background-color: #2dbd83;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background-color: #6c757d;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
}

.carousel-control-prev,
.carousel-control-next {
    display: none; /* 버튼을 완전히 숨김 */
}