*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1{
  text-align: center;
  margin: 20px;
  color:white;
}

a{
  color: white;
}

body{
  background-image: url(../images/asd.png);
}

a:hover{
  text-decoration: none;
}

input{
  width: 300px;
  height: 50px;
  font-size: 18px;
  margin-bottom: 30px;
  border-radius: 4px;
  padding-left: 10px;
}

input:hover{
  box-shadow: 0 0 6px 3px rgba(58, 219, 253, 0.35);
}

.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;
}

.submit{
  padding: 13px 30px;
  font-size: 15px;
  background-color: #2CA8C6;
  color: white;
  border: none;
  border-bottom: 3px solid #6EE9FD;
  border-right: 2px solid #6EE9FD;
  border-left: 0px solid #6EE9FD;
  margin-bottom: 20px;
  cursor: pointer;
  width: 300px;
  transition: all 0.5s;

}

.submit:hover{
  box-shadow: 0 0 6px 3px rgba(58, 219, 253, 0.35);
  color: #2C536C;
  transform: scale(1.05);
}

.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: 78px;
top: 50px;
color: red;
text-decoration-color: darkred;
text-decoration-style: solid;
text-decoration: underline;
font-weight: bold;
font-size: 16px;
display: block;
width: 294px;
background-color: white;
height: 25px;
border-radius: 0 0 10px 10px;
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;
}
