/* chat ai 말풍선 */
.messageHuman {
    position:relative; float:right; margin:5px 5px 5px 50px; padding: 10px; width:250px; height:auto;
    color: white; text-align: left; border-radius: 10px; background-color: #9371c0; font-size: 1em; line-height: 1.6em;
  }
  .messageHuman p {margin-top: 10px; margin-bottom: 10px;}
  .messageHuman::after {
    content:""; position: absolute; top: 10px; right: -10px; 
    border-left: 10px solid #9371c0; border-top: 3px solid transparent; border-bottom: 5px solid transparent;
  }
  .messageAi {
    position:relative; float:right; margin:5px 70px 5px 5px; padding: 10px; width:250px; height:auto; 
    color: white; text-align: left; border-radius: 10px; background-color: #777; font-size: 1em; line-height: 1.6em;
  }
  .messageAi p {margin-top: 10px; margin-bottom: 10px;}
  .messageAi::after {
    content:""; position: absolute; top: 10px; left: -10px; 
    border-right: 10px solid #777; border-top: 3px solid transparent; border-bottom: 5px solid transparent;
}


/* 문의하기 섹션 */
.contact-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: white;
}

/* 메시지 영역 */
.message-area {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    clear: both;
}

/* 문의 폼 영역 */
.contact-form-container {
    width: 100%;
    max-width: 35rem;
    margin: 20px auto;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: white;
    color: #1f2937;
    border: none;
    outline: none;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #f5f5f5;
    color: #1f2937;
    border: 1px solid #ccc;
    outline: none;
    min-height: 5rem;
}

.form-textarea:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.submit-button {
    width: 100%;
    background-color: #7aa362;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: green;
}
