*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:Arial,sans-serif;
}

body{
  background:#f5f7fb;
  padding:40px 15px;
}

#tnd-widget{
  max-width:720px;
  margin:auto;
}

.tnd-hero{
  background:#1B4FD8;
  padding:30px;
  border-radius:14px 14px 0 0;
  color:white;
}

.tnd-logo{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:15px;
}

.tnd-logo-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:white;
}

.tnd-logo-name{
  font-size:14px;
}

.tnd-hero h2{
  font-size:28px;
  margin-bottom:8px;
}

.tnd-hero p{
  font-size:14px;
  opacity:.9;
}

.tnd-days-badge{
  display:inline-block;
  margin-top:14px;
  background:white;
  color:#1B4FD8;
  padding:5px 12px;
  border-radius:30px;
  font-size:13px;
  font-weight:bold;
}

.tnd-body{
  background:white;
  padding:25px;
  border-radius:0 0 14px 14px;
  border:1px solid #ddd;
}

.tnd-section-label{
  margin-bottom:15px;
  font-size:12px;
  text-transform:uppercase;
  color:#777;
  font-weight:bold;
}

.tnd-grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-bottom:15px;
}

.tnd-field{
  display:flex;
  flex-direction:column;
}

.tnd-field label{
  margin-bottom:6px;
  font-size:13px;
  color:#555;
}

.tnd-field input,
.tnd-field select{
  padding:12px;
  border:1px solid #ccc;
  border-radius:8px;
}

.tnd-btn{
  width:100%;
  padding:15px;
  border:none;
  background:#1B4FD8;
  color:white;
  font-size:16px;
  border-radius:10px;
  cursor:pointer;
}

.tnd-btn:hover{
  background:#143ea9;
}

.tnd-error{
  color:red;
  font-size:12px;
  margin-top:5px;
  display:none;
}

.tnd-has-error .tnd-error{
  display:block;
}

@media(max-width:600px){
  .tnd-grid-2{
    grid-template-columns:1fr;
  }
}