:root{
  --bg-1: #b4ac4a;
  --bg-2: #389d57;
  --accent: rgba(255,255,255,0.95);
  --surface: rgba(255,255,255,0.06);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  font-family:'Lato',sans-serif;
  color:var(--accent);
  background:linear-gradient(135deg,var(--bg-1) 0%, var(--bg-2) 80%);
}

.form-wrapper{
  width:100%;
  max-width:720px;
  background:var(--surface);
  padding:28px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

h1.text{
  margin:0 0 14px;
  font-weight:300;
  font-size:clamp(20px,4vw,36px);
}

label{
  display:block;
  font-size:14px;
  margin:12px 0 6px;
  opacity:0.95;
}

input[type="email"], textarea, .input{
  width:100%;
  padding:12px 14px;
  font-size:15px;
  color:inherit;
  background:transparent;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:8px;
}

textarea{min-height:140px;resize:vertical}

input:focus, textarea:focus{
  outline:none;
  box-shadow:0 0 0 4px rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.6);
}

.button{
  margin-top:18px;
  padding:12px 20px;
  font-size:16px;
  color:var(--accent);
  background:transparent;
  border:2px solid rgba(255,255,255,0.22);
  border-radius:8px;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,transform .08s ease;
}

.button:hover{background:rgba(255,255,255,0.92);color:#222}
.button:active{transform:translateY(1px)}

.message{margin-top:14px;font-size:15px}

.footer{margin-top:18px;text-align:right;font-size:13px}

@media (max-width:520px){
  .form-wrapper{padding:18px}
  h1.text{font-size:clamp(18px,6vw,28px)}
  .button{width:100%}
}