/* 전체 페이지 기본 스타일 */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f3f3f3;
}

/* 페이지 전체 구조: header - main - footer 수직 배치 */
.page-wrapper {
    display: flex;
    flex-direction: column;
}

/* 본문 영역만 수직 정렬 */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3em;
}

/* 회원가입 박스 */
.signup-container {
    background: white;
    padding: 2em;
    border-radius: 0.625em;   /* 10px */
    box-shadow: 0 0 0.9375em rgba(0,0,0,0.1);  /* 15px */
    width: 30em;  /* 400px */
    box-sizing: border-box;
}


/* 제목 */
.signup-container h2 {
    margin-bottom: 1em;
    text-align: center;
    font-size: 1.5em;
    margin-top:0;
}

/* 각 입력 항목 정렬 */
.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.form-group label {
    width: 90px;
    font-weight: bold;
    margin-right: 10px;
    font-size: 0.95em;
}

/* input, select 기본 필드 스타일 */
.form-group input,
.form-group select {
    flex: 1;
    padding: 0.6em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

/* 입력 필드 포커스 효과 */
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #337dc3;
    box-shadow: 0 0 5px rgba(51, 125, 195, 0.3);
}

/* 가입 버튼 */
.signup-container button {
    width: 100%;
    padding: 0.75em;
    border: none;
    border-radius: 5px;
    background-color: #337dc3;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
}

.signup-container button:hover {
    background-color: #286aa0;
}

/* flash 메시지 */
.flashes {
    color: red;
    font-size: 0.9em;
    margin-bottom: 1em;
    list-style-type: none;
    padding: 0;
    text-align: center;
}


.announce {
    margin-top:2em;
}