* {
    box-sizing: border-box;
  }


  body {
    background-color: #f1f1f1;
  }

  .bg-green {
    background: #3b5d50;
    color: white;
  }

  .carousel-control-prev,
  .carousel-control-next {
    align-items: flex-start;
    ;
    /* Aligns it at the top */
  }

  .carousel-control-prev,
  .carousel-control-next {
    align-items: flex-end;
    ;
    /* Aligns it at the bottom */
  }


  h1 {
    text-align: center;
  }

  input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
  }

  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }

  /* Hide all steps by default: */
  .tab {
    display: none;
  }

  button {
    background-color: #04AA6D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
  }

  button:hover {
    opacity: 0.95;
  }

  #prevBtn {
    background-color: #bbbbbb;
  }

  /* Make circles that indicate the steps of the form: */
  .step {
    height: 0px;
    width: 0px;
    margin: 0 0px;
    background-color: transparent;
    border: none;
    border-radius: 0%;
    display: inline-block;
    opacity: 0.5;
    margin-top: 0px;
  }

  .step.active {
    opacity: 1;
  }

  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: transparent;
  }

  .tab input {
    height: 40px;
  }

  