/* 구글 폰트 'Noto Sans KR' 추가 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* 글로벌 스타일 */
body {
    background-color: #f8f9fa;
    font-family: 'Noto Sans KR', Arial, sans-serif;
}

.background-overlay {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* 주황색 실선 스타일 */
.orange-line {
    width: 100%;
    height: 4px; /* 실선 두께 */
    background-color: #ff9800; /* 주황색 */
    margin: 10px 0; /* 로고와의 간격 */
}

.terms-container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
}

.logo-container {
    margin-bottom: 20px;
}

.logo-image {
    width: 180px;
    height: auto;
    display: block;
}

.welcome-banner {
    height: 220px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.all-agree-container {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
}

.all-agree-container input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 12px;
}

.all-agree-container .form-check-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
}

.all-agree-divider {
    border: none;
    height: 1px;
    background-color: #333;
    margin: 8px 0;
}

.term-section {
    border: none;
    border-radius: 8px;
    padding: 15px;
}

.term-title {
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
}

.term-content {
    display: none;
    padding: 15px;
    background-color: #f1f1f1;
    border-radius: 8px;
    margin-top: 10px;
}

.term-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.btn-container .btn-custom {
    display: inline-block;
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
}

.btn-custom {
    display: inline-block;
    background-color: #ff9800;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    color: #fff;
    transition: background-color 0.3s;
    border: none;
}

.btn-custom:hover:not(.disabled) {
    background-color: #e67e00;
}

.btn-custom.disabled {
    background-color: #bbb !important;
    cursor: not-allowed;
    color: #fff !important;
    border: none;
}

.text-danger,
.text-optional {
    color: #000;
}

.form-check-label {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.form-check-input {
    width: 24px;
    height: 24px;
    margin: 0;
    border: 2px solid #333;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #ff9800;
    border-color: #ff9800;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

a:hover,
a:focus,
a:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}
