
body {
  font-family: 'Segoe UI', sans-serif;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 255, 255, 0.93);
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo-header {
  text-align: center;
  margin-bottom: 20px;
}


.logo {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}




label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

input[type="text"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
  background-color: #fdf5ff;
}

input:focus,
textarea:focus {
  border-color: #90278e;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.radio-group label {
  background: #f6e4f9;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.radio-group input {
  display: none;
}

.radio-group input:checked + label {
  background: #90278e;
  color: white;
  border-color: #90278e;
}

button,
.action-buttons button {
  background-color: #90278e;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover,
.action-buttons button:hover {
  background-color: #6d1e6b;
}

#summary {
  margin-top: 30px;
  background-color: #f3e5f5;
  padding: 20px;
  border-radius: 8px;
  white-space: pre-wrap;
  font-family: monospace;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.action-buttons button {
  flex: 1;
}
@media (max-width: 600px) {
  .logo-header img.logo {
    max-width: 120px !important;
    height: auto !important;
  }

  .container {
    padding: 15px;
  }

  h2 {
    font-size: 20px;
  }
}

