/* 공통 스타일 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.wrapper {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* 제목 스타일 */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.title {
    text-align: center;
    font-weight: 700;
}

/* 입력 필드 공통 스타일 */
input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* 버튼 스타일 */
button {
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* 에러 메시지 스타일 */
.error {
    font-size: 14px;
    color: red;
    margin-top: 5px;
    text-align: left;
}

/* 구분선 스타일 */
.line {
    margin: 20px 0;
}

/* signUp 페이지 특화 스타일 */
.rule {
    margin-top: 10px;
}

iframe {
    border: 1px solid black;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: left;
    font-size: 14px;
}

.desc {
    margin: 10px 0;
    font-weight: bold;
}

/* 개인정보 관련 문구 스타일 */
.privacy {
    font-size: 12px;
    color: red;
    margin-top: 10px;
}

.privacy font {
    font-size: 12px;
}

/* signUp2 페이지 특화 스타일 */
.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 20%;
    font-size: 16px;
    color: #555;
    margin-right: 10px;
    text-align: left;
}

.form-group input {
    width: 75%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#signUpButton {
    width: 100%;
    cursor: pointer;
    height: 50px;
}
