
/* ************************************** */
/* Main                                   */
/* ************************************** */


main {
  min-height: 100vh;
}


/* ************************************** */
/* Banner                                 */
/* ************************************** */

.banner {
  color: white;

  min-width: 100%;
  height: 20vh;
  padding: 2rem;
  box-sizing: border-box;

  background-image: url('../images/rainbow-vortex.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* ************************************** */
/* Contact Details                        */
/* ************************************** */

.contact-details {
  padding: 1rem 0;
  display: block;
  justify-items: center;
  flex-direction: column;
}


/* ************************************** */
/* Online Query                           */
/* ************************************** */

.online-query {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ************************************** */
/* Form                                   */
/* ************************************** */

form {
    width: 100%;
    gap: 0.5rem;
}

.form-container {
    width: 100%;
    padding: 0.1rem 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.form-column-1 {
    padding: 0 1rem 0 0;
    width: 20%;
    display: flex;
    justify-content: right;
}

.form-column-2 {
    width: 40%;
    max-width: 15rem;

    display: flex;
    justify-content: left;
}

input {
    height: 1.2rem;
}

.submit-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}



