
        /*body { font-family: system-ui, sans-serif; background:#f6f6f6; margin:0; }*/
        .wrap { max-width:720px; margin:8vh auto; background:#fff; padding:40px; border-radius:18px; box-shadow:0 10px 35px rgba(0,0,0,.08); }
        /*h1 { margin-top:0; font-size:32px; }
        label { display:block; margin-top:18px; font-weight:600; }
        input, textarea { width:100%; padding:12px; margin-top:6px; border:1px solid #ccc; border-radius:10px; font-size:16px; }
        button { margin-top:22px; padding:14px 22px; border:0; border-radius:10px; background:#111; color:#fff; font-size:16px; cursor:pointer; }*/
        .ok { background:#e6ffed; padding:14px; border-radius:10px; }
        .err { background:#ffecec; padding:14px; border-radius:10px; }
        .small { color:#666; font-size:12px; }



 body {
     margin: 0;
     font-family: Arial, sans-serif;
     background-image: url(/assets/image/send-background.jpg);
     background-position: center center;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     height: 100vh;
 }
 .form-container {
     background-color: rgba(255, 255, 255, 0.95);
     padding: 30px;
     border-radius: 12px;
     max-width: 500px;
     width: 100%;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);     
 }
 h1 {
     margin: 0 0 10px;
 }
 label { display:block; font-weight:600; }
 input, textarea, button {
     width: 100%;
     padding: 12px;
     margin: 5px 0 15px 0;
     border-radius: 6px;
     border: 1px solid #ccc;
     font-size: 16px;
     box-sizing: border-box;
 }
 button {
     background-color: #4CAF50;
     color: white;
     border: none;
     font-weight: bold;
     cursor: pointer;
 }
 button:hover {
     background-color: #45a049;
 }

ul {
   padding-left: 20px;
}

ul li {

}

 .message {
     margin-top: 15px;
     font-weight: bold;
 }
 .success {
     color: green;
 }
 .error {
     color: red;
 }
 @media (max-width: 600px) {
     body {
         padding: 20px;
     }
     .form-container {
         padding: 20px;
     }
 }