* {
  margin: 0;
  padding: 0;
  font-family: "Roboto Condensed";
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

*:focus {
  outline-color: #f6821f;
}

html {
  font-size: 16px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #003682;
  background-color: #f8fbfb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Inter, Segoe UI,
    Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  overflow-x: hidden;
  line-height: 1.4;
  height: 100vh;
  width: 100vw;
}

main {
  padding: 2rem;
  max-width: 600px;
  min-width: 400px;
  min-height: 695px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
main h2{
	text-align: center;
}

blockquote {
  display: block;
  font-size: 0.85rem;
  padding-left: 0.75rem;
  border-left: 4px solid #f6821f;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

blockquote p {
  margin-bottom: 0.5rem;
}

.input {
  display: block;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.input label span{
  font-size: 12px;
  font-weight: lighter;
}

.input label,
.checklist > label {
  display: block;
  font-weight: bold;
}

.input input,
.input select {
  width: 100%;
  display: block;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #000;
  padding: 0.375rem 0.5rem;
  min-height: 2rem;
  height: 2rem;
}

.checklist li {
  list-style: none;
  padding-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.checklist input {
  margin-right: 0.25rem;
}
.checkboxInput {
  display: flex;
  align-items: center;
}
.checkboxInput input {
  width: fit-content;
  margin-right: .5rem;
}
.checkboxInput label {
  font-weight: 400;
}
.tnc label {
  font-size: 12px;
}

button {
  width: 100%;
  display: block;
  cursor: pointer;
  margin-top: 1.5rem;
  background-color: #0c3a7b;
  border-radius: 2px;
  font-weight: bold;
  padding: 0.75rem;
  outline: none;
  border: none;
  color: #fff;
}

button:hover {
  background-color: #002b67;
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.mobileNo{
  display: flex;
  gap: 2rem;
}
.mobileNo select{
  width: 45%;
}
.hidden{
  display: none;
}
.success-message div{
  margin-top: 40px;
}