
.send{
	width: 200px;
}


.textPart {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 150px 0 150px;
}
.textPart h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 67px;
}
.textPart p {
    font-size: 17px;
    font-weight: 300;
    padding-top: 30px;
    color: #7c7c7c;
}

.formPart {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
}
.formPart label {
    display: block;
    margin-bottom: 13px;
    font-size: 17px;
    font-weight: 400;
}
/* 입력창: 언더라인만 */
.formPart input,
.formPart textarea {
  width: 100%;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 13px;

  border: none;
  border-bottom: 1px solid #c9c9c9; /* 원하는 색으로 변경 가능 */
  background: transparent;
  outline: none;
  padding: 10px 0;              /* 좌우 0으로 두면 언더라인 느낌이 깔끔 */
  box-sizing: border-box;
}

/* 마지막(내용) 입력: 세로로만 늘리기 */
.formPart textarea {
  resize: vertical;             /* 좌우 금지, 위아래만 */
  min-height: 120px;            /* 원하는 기본 높이 */
}
/* label 텍스트 뒤 빨간 점(필수 표시) */
.formPart label::after {
  content: "  •";
  color: #e60000;
  font-size: 14px;
  vertical-align: middle;
  position: relative;
  left: 5px;
  bottom: 3px;
}

/* 등록하기 버튼 스타일 */
.formPart .submitBtn {
  margin-top: 40px;
  padding: 10px 55px;
  background: #fff;
  border: 1px solid #000;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

/* (선택) hover 느낌 */
.formPart .submitBtn:hover {
  background: #f5f5f5;
}