/* 1. 레이아웃 중앙 정렬 */
.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 80vh;
    width: 1340px;
}

/* 회원가입 박스 컨테이너 */
.register-container {
    background-color: #d9d9d9; /* 이미지의 배경색 */
    padding: 50px 40px;
    border-radius: 5px;
    width: 100%;
    max-width: 500px; /* 로그인보다 약간 더 넓게 설정 */
    text-align: center;
}

.register-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

/* 2. 입력창 및 SVG 아이콘 스타일 */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

/* 입력창 내부 왼쪽 SVG 아이콘 */
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    z-index: 10;
}

/* 입력창 스타일 (아이디, 비번, 이메일, 날짜 공통) */
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 50px; /* 아이콘을 위한 왼쪽 여백 */
    border: 1px solid #000;
    border-radius: 15px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f8f9fa;
}

/* 비밀번호 입력값 일치검증메시지 */
.password-msg {
    font-size: 12px;
    margin-left: 20px; /* 아이콘 정렬 맞추기 */
    text-align: center;
    display: flex;
    justify-content: flex-start;
}

.password-msg.success {
    color: #2e7d32; /* 초록 */
}

.password-msg.error {
    color: #d32f2f; /* 빨강 */
}


/* 날짜 선택(date) 입력창 특화 스타일 */
input[type="date"] {
    font-family: inherit;
    color: #666;
}

/* 3. 인증 요청 (제출) 버튼 스타일 */
.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #e0e0e0;
    border: 1px solid #000;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* 하단 링크 */
.footer-links {
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
}

/* 에러 메시지 */
.error-msg {
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
}