/* 전체 페이지 스타일 */
body {
    background-color: rgba(255, 255, 255, 0.97);
    color: #000000;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    height: 100vh;
    flex-direction: column;
}

/* 메인 컨테이너 - 단건 요청 & 파일 요청을 가로 배치 */
.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 상단 정렬 */
    gap: 50px; /* 두 개의 폼 사이 간격 */
    margin-bottom: 20px; /* 아래 버튼과 간격 */
}

/* 개별 폼 컨테이너 */
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

/* 요청하기 버튼 - 전체 페이지에서 가운데 정렬 */
.submit-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* 로고 위치 조정 */
.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.logo {
    width: 300px;
}

/* 입력 필드 스타일 */
label {
    font-size: 16px;
    margin: 12px 0 6px;
}

input[type="text"], input[type="file"] {
    padding: 12px;
    margin: 8px 0 18px;
    border: 1px solid #232323;
    border-radius: 10px;
    background: transparent;
    color: #201f1f;
    width: 250px;
    text-align: center;
}

input[type="file"] {
    cursor: pointer;
    font-size: 14px;
    border-radius: 10px;
}

/* 버튼 스타일 */
button {
    background-color: #3c4959;
    color: white;
    padding: 14px 22px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 12px;
}

button:hover {
    background-color: #3e5581;
}

/* 가이드 버튼 */
.guide-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 14px;
    background-color: #0e1953;
    color: #fffdfd;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.guide-button:hover {
    background-color: #ddd;
}