/* 전체 폼 컨테이너 */
.join-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 타이틀 */
.join-container h3 {
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

/* 인풋 박스 */
.join-container input[type="text"],
.join-container input[type="password"],
.join-container input[type="email"],
.join-container input[type="date"],
.join-container select {
    height: 50px;
    font-size: 16px;
    border-radius: 5px;
}

/* 가입 버튼 */
.join-container button[type="submit"] {
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    background-color: #ff69b4; /* 핑크색 계열 유지 */
    border: none;
    color: #fff;
}

/* 중복확인, 인증요청 버튼 */
.join-container .btn-outline-secondary,
.join-container .btn-outline-primary {
    height: 50px;
}

/* 유효성 결과 메시지 */
#pwRuleResult, #pwCheckResult, #idCheckResult {
    font-size: 13px;
}

/* 약관동의 */
.join-container .form-check-label {
    font-size: 14px;
    color: #333;
}

/* 가입하기 버튼 hover */
.join-container button[type="submit"]:hover {
    background-color: #ff4fa3;
}
