@import url('https://fonts.googleapis.com/css2?family=Montserrat');

* {
  font-family: 'Montserrat';
}

body {
  background-color: #bfbfbf;
}

.header {
    align-items: center;
    background-color: #000;
    border-radius: 0 0 40px 40px;
    display: flex;
    justify-content: space-between;
    left: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 2;
    box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
}

.sticky {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 18px;
}

h3 {
    text-align: left;
    font-size: 16px;
}

p {
    text-align: left;
    font-size: 14px;
}

label {
    font-size: 16px;
    margin: 5vh auto auto auto;
}

#header-logo {
  height: 7vh;
  margin: 4vh;
}

.sticky {
  position: fixed;
}

.input {
  border: 2px solid #000;
  border-radius: 40px;
  display: block;
  font-size: 18px;
  margin: 2vh auto;
  padding: 6px;
  width: 100%;
}

.container {
  position: relative;
  margin: 19vh auto 4vh auto;
  padding: 2vh 2vw;
  display: block;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  border-radius: 40px;
  top: -10px;
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
}

#form-sections {
  display: flex;
  justify-content: center;
}

#first {
  float: left;
  margin: 2vh 6vw;
  width: 50%;
}

#second {
  float: right;
  margin: 2vh 6vw;
  width: 50%;
}



.filled-button {
  display: flex;
  border-radius: 40px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  margin: 0 auto 6vh auto;
  padding: 12px 6vw;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  background-color: #000000;
  border: none;
  color: #ffffff;
  width: 10vw;
}

.filled-button:hover {
  background-color: #cccccc;
  color: #000000;
}

.filled-button:active {
  background-color: #ffffff;
  color: #000000;
}
