*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1{
  text-align: center;
  margin: 20px;
  color: white;
}

a{
  color: blue;
}

a:hover{
  text-decoration: none;
}

form{
    margin-top: 50px;
    width: 500px;
    background-color: #ecf7fc;
    padding: 10px 25px;
    border: 3px solid #3b3b3b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial;
    font-size: 11pt;
    color:#3b3b3b;
    font-weight: bold;
    margin: 0 auto;
}

input{
  width: 100%;
  height: 50px;
  font-size: 18px;
  margin-bottom: 40px;
  border-radius: 4px;
  padding-left: 10px;
}


label {
  display: block;
  width: 100%
}

fieldset{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: none;
}

.boxes {
  width: 40px;
  text-align: center;
}

.submit{
  padding: 13px 30px;
  font-size: 15px;
  background-color: #2CA8C6;
  color: white;
  border: none;
  border-bottom: 4px solid #6EE9FD;
  margin-bottom: 20px;
  cursor: pointer;
  width: 300px;
  transition: all 0.5s;
}

.submit:hover{
  background-color: #FFFFFF;
  color: #2C536C;
}

.success{
  color: green;
  border: 3px solid green;
}

.error{
  color: red;
  border: 3px solid red;
}

.errorSpan{
  position: absolute;
  left: 76px;
  top: 49px;
  display: block;
  width:299px;
  background-color: white;
  height: 25px;
  border-radius: 0 0 10px 10px;
  color: red;
  font-weight: bold;
  display: none;
}

#search{
  position: absolute;
  background-color: white;
  color: black;
  font-family: sans-serif;
  top: 50px;
  left: 77px;
  width: 297px;
}

.search{
  border: black thin solid;
  font-size: 12px;
  padding: 3px;
}

.search:hover{
  background-color: lightblue;
  cursor: pointer;
}
