body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 420px;
  margin: auto;
}

h1 {
  font-size: 32px;
  margin: 0;
}

.subtitle {
  color: #666;
  margin: 10px 0 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

label {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}

input[type="text"],
input[type="email"] {
  width: 90%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #ccc;
  outline: none;
}

input.error {
  border-bottom: 2px solid red;
}

.error-text {
  color: red;
  font-size: 12px;
}

.radio-group {
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.radio-option input {
  margin-right: 10px;
}

.checkbox {
  margin: 20px 0;
}

button {
  width: 100%;
  padding: 15px;
  margin: 5px 0;
  background: #0b2a4a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #0f6bc2;
}

.progress {
  float: right;
  text-align: center;
  font-size: 14px;
}
.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
  float: right;
}

.progress-circle svg {
  transform: rotate(-90deg);
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: bold;
}
