body {
    font-family: Arial, sans-serif;
    background-color: #F8F0F4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* 이메일 입력 필드 스타일 */
.email-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #FFD1E1; /* 배경색 추가 */
    color: #333; /* 텍스트 색상 */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.email-input:focus {
    background-color: #FFFFFF; /* 포커스 시 배경색 변경 */
    border: 2px solid #FF6B9E; /* 포커스 시 테두리 추가 */
    outline: none; /* 기본 포커스 테두리 제거 */
}

/* !important를 추가 (마지막 해결책으로 사용) */
.email-input {
    background-color: #FFD1E1 !important;
    color: #333 !important;
    border: none !important;
}

.login-container {
    background-color: #F49AC2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.login-container h3 {
    color: #fff;
    margin-bottom: 10px;
}

.login-form input[type="text"],
.login-form input[type="password"],
.login-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.login-form input[type="submit"] {
    background-color: #FF6B9E;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-form input[type="submit"]:hover {
    background-color: #FF4785;
}
.login-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirm-buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #FF6B9E;
    color: #fff;
}

.btn-primary:hover {
    background-color: #FF4785;
}

.btn-secondary {
    background-color: #ccc;
    color: #000;
}

.btn-secondary:hover {
    background-color: #999;
}

.password-rules {
    background-color: #FFD1E1;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.password-rules h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
}

.password-rules ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    color: #fff;
}

.password-rules ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

.faq-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.accordion {
    background-color: #F49AC2;
    color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 5px;
}

.accordion:hover {
    background-color: #FF6B9E;
}

.accordion:after {
    content: '\\002B'; /* '+' 표시 */
    font-size: 20px;
    float: right;
}

.accordion:after {
    content: '\002B';
    font-size: 20px;
    float: right;
}

.panel {
    background-color: #FFD1E1;
    padding: 15px;
    display: none;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 5px;
}

.inquiry-form {
    width: 100%;
    max-width: 600px;
    background-color: #F49AC2;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inquiry-form h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.inquiry-form textarea,
.inquiry-form select,
.inquiry-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.inquiry-form button {
    background-color: #FF6B9E;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-form button:hover {
    background-color: #FF4785;
}

.char-count {
    text-align: right;
    font-size: 14px;
    color: #333;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px; /* FAQ와 문의 폼 사이의 간격 추가 */
}

.faq-container, .inquiry-form {
    width: 100%;
    max-width: 600px;
}
