.wrap{
  max-width:780px;
  margin:40px auto 70px;
  padding:0 20px;
  box-sizing:border-box;
}

.title{
  text-align:center;
  margin-bottom:24px;
}

.title h1{
  font-size:36px;
  font-weight:900;
  margin:0 0 10px;
}

.title p{
  font-size:17px;
  color:#666;
  line-height:1.6;
}

.form-box{
  background:white;
  border-radius:22px;
  padding:34px;
  box-shadow:0 10px 28px rgba(0,0,0,0.08);
  box-sizing:border-box;
}

label{
  display:block;
  font-size:17px;
  font-weight:900;
  margin:18px 0 8px;
}

input,
select,
textarea{
  width:100%;
  box-sizing:border-box;
  padding:16px;
  border:2px solid #ddd;
  border-radius:14px;
  font-size:17px;
  font-family:'SUIT', sans-serif;
  font-weight:700;
  outline:none;
  background:white;
}

input:focus,
select:focus,
textarea:focus{
  border-color:#4bb3ff;
}

textarea{
  min-height:150px;
  resize:vertical;
  line-height:1.6;
}

.submit-btn{
  width:100%;
  margin-top:26px;
  padding:18px;
  border:none;
  border-radius:16px;
  background:#4bb3ff;
  color:white;
  font-size:20px;
  font-weight:900;
  cursor:pointer;
  font-family:'SUIT', sans-serif;
}

.submit-btn:disabled{
  opacity:0.7;
  cursor:not-allowed;
}

.message{
  margin-top:18px;
  text-align:center;
  font-weight:900;
  min-height:24px;
}

.success{
  color:#16a34a;
}

.error{
  color:#ef4444;
}

.toast{
  position:fixed;
  left:50%;
  bottom:34px;
  transform:translateX(-50%);
  background:#1677ff;
  color:white;
  padding:14px 24px;
  border-radius:999px;
  font-size:15px;
  font-weight:900;
  box-shadow:0 8px 24px rgba(0,0,0,0.2);
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:0.25s;
  white-space:nowrap;
}

.toast.show{
  opacity:1;
  bottom:48px;
}

@media(max-width:768px){
  .wrap{
    margin:30px auto 50px;
    padding:0 16px;
  }

  .title h1{
    font-size:34px;
  }

  .title p{
    font-size:17px;
  }

  .form-box{
    padding:24px 18px;
    border-radius:18px;
  }
}