*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1{
  text-align: center;
  margin: 20px;
  color: white;
}

body{
  background-image: url('../images/bg.png');
}

a{
  color: white;
}

a:hover{
  text-decoration: none;
}

.container{
  width: 450px;
  height: 500px;
  background-color: rgba(24, 33, 52, 0.7);
  margin: 50px auto;
  border-radius:  0 0 10px 10px;
  text-align: center;
}

input{
  width: 300px;
  height: 50px;
  font-size: 18px;
  margin-bottom: 50px;
  border-radius: 4px;
  padding-left: 10px;
}

input:hover{
  box-shadow: 0 0 6px 3px rgba(58, 219, 253, 0.35);
}

.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;
}

.logo{
  color: #FFFFFF;
  font-weight: bold;
  padding: 50px;
}

.success{
  color: green;
  border: 3px solid green;
}

.error{
  color: red;
  border: 3px solid red;
}

.input{
  position: relative;
}

.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;
}
