/* Simple, professional form styles for Alumni Tracer */
.ats-form-wrap {
  width:100%;
  max-width:720px;
  margin:2rem auto;
  padding:0 1rem;
}
.ats-form-card {
  background:#ffffff;
  border:1px solid #dfe4ea;
  box-shadow:0 16px 40px rgba(15, 23, 42, 0.08);
  border-radius:18px;
  overflow:hidden;
}
.ats-form-header {
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:0.75rem;
  padding:1.75rem 1.25rem 1rem;
  background:#f8fbff;
}
.ats-form-icon {
  width:72px;
  height:72px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(15, 23, 42, 0.08);
  padding:0.5rem;
}
.ats-form-header h2 {
  margin:0;
  font-size:2rem;
  letter-spacing:0.02em;
}
.ats-form-subtitle {
  margin:0;
  max-width:620px;
  color:#3b4d63;
  font-size:1rem;
  line-height:1.7;
}
.ats-form-success {
  margin:0 1.25rem 1rem;
  padding:1rem 1rem;
  background:#e8f9ed;
  border:1px solid #c8eacf;
  color:#1e5a2c;
  border-radius:12px;
}
.ats-form{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  margin:0 auto;
  padding:1rem;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:6px;
}
.ats-form *{
  box-sizing:border-box;
}
.ats-form .ats-row{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-bottom:1rem;
}
.ats-form label{
  width:100%;
  display:block;
  font-size:15px;
  color:#1d2939;
}
.ats-form input[type="text"],
.ats-form input[type="email"],
.ats-form input[type="number"],
.ats-form select,
.ats-form textarea,
.ats-form input[type="file"]{
  width:100%;
  padding:12px 14px;
  border:1px solid #cbd5e0;
  border-radius:10px;
  margin-top:8px;
  font-size:1rem;
  background:#f9fbff;
}
.ats-form textarea{
  min-height:110px;
}
.ats-form .button{
  background:#0073aa;
  color:#fff;
  border:0;
  padding:10px 16px;
  border-radius:4px;
  cursor:pointer;
}
.ats-form .button:hover{
  background:#006799;
}
.ats-form img{
  max-width:100%;
  height:auto;
  border-radius:4px;
}
@media (max-width: 720px) {
  .ats-form-wrap {
    padding:0 0.75rem;
  }
  .ats-form-header {
    padding:1.25rem 1rem 1rem;
  }
  .ats-form-header h2 {
    font-size:1.6rem;
  }
  .ats-form-subtitle {
    font-size:0.95rem;
  }
  .ats-form{
    padding:1rem;
  }
  .ats-form .button{
    width:100%;
  }
}
