:root {
  --color-white: #f3f3f3;
  --color-darkblue: #1b1b32;
  --color-darkblue-alpha: rgba(27, 27, 50, 0.8);
  --color-green: #37af65;
}
label {
    display: block;
  }
form div {
    display: block;
  }
.radio, input[type="radio"] {
    display: inline-block;
  }
.check, input[type="checkbox"] {
    display: inline-block;
  }    
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-white);
    margin: 0;
  }
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: var(--color-darkblue);
    background-image: linear-gradient(
        115deg,
        rgba(58, 58, 158, 0.8),
        rgba(136, 136, 206, 0.7)
      ),
      url(https://cdn.freecodecamp.org/testable-projects-fcc/images/survey-form-background.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  h1 {
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
  }
  
  p {
    font-size: 1.125rem;
  }
  #description {
    font-style: italic;
    font-weight: 200;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 1.7rem;
    margin-bottom: -1rem;
    padding-bottom: 20px;
  }
  select {
    font-size: 14px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
  }
 
  
  h1,
  p {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  
  label {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  input[type="text"], input[type="email"], input[type="number"] {
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  .select1{
    padding-bottom: 10px;
    margin-top: 15px;
  }
  .reco{
    padding-top: 32px;
  }

  input,
  button,
  select,
  textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  .container {
    width: 100%;
    margin: 3.125rem auto 0 auto;
    background-color: rgba(138, 43, 226, 0.5);
  }

  @media (min-width: 576px) {
    .container {
      max-width: 540px;
    }
  }
  
  @media (min-width: 768px) {
    .container {
      max-width: 720px;
    }
  }
  form {
    background: var(--color-darkblue-alpha);
    padding: 2.5rem 0.625rem;
    border-radius: 0.25rem;
  }
  
  @media (min-width: 480px) {
    form {
      padding: 2.5rem;
    }
  }
  input[type="radio"], input[type="checkbox"] {
    display: inline-block;
    margin-right: 0.625rem;
    min-height: 1.25rem;
    min-width: 1.25rem;
  }
  textarea {
  min-height: 120px;
  width: 100%;
  padding: 0.625rem;
  resize: vertical;
  }
  button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: green;
    color: inherit;
    border-radius: 2px;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 20px;
  }