body {
  font-family: 'Aspekta', Arial, sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;  
}

a {      
   text-decoration: none;
}

p {
  width: 100%;
}

.container {  
  border-radius: 5px;  
  padding: 20px;
  width: 400px;
}

.container h2 {
  text-align: center;
}

.container p {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}


.console {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.console span {
  /* width: 100%; */
  display: flex;
  align-items: center;  
}

/* .error-text {
  width: 80%;
}

.error-image {
  justify-content: center;
  width: 20%;
} */


.container input[type="text"]{
  text-transform: uppercase;
  background-color: #FEF7E8;
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 0px solid #ccc;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: .03rem;
}

.container input[type="button"] {
  text-transform: uppercase;
  background-color: #DA4141;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border-radius: 2rem;
  margin-top: 1rem;
}

.container select {
  background-color: #FEF7E8;
  padding: 12px;
  margin: 8px 0;
  border: 0px solid #ccc;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: .03rem;
}

.errorBadge {      
  background-color: #FFDDDD;  
  padding: 12px 0px;    
  width: 100%;
  font-size: 16px;  
  margin-top: 1rem;  
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  border-top: 1rem solid red;
}

@media screen and (max-width: 480px) {
  .container {
    width: 90%;
  }
}