/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
*{
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/

body {
  font-family: 'Poppins', sans-serif;
  background-color: rgb(122, 67, 151);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  height: 550px;
  width: 400px;
  background: white;
  padding: 20px;
  box-shadow: 10px 10px 0px 0px rgb(82, 31, 106);
}

h1 {
  align-self: center;
  font-weight: 900;
  color: rgb(122, 67, 151);
}

input {
  border: 3px solid black;
  padding: 15px;
  font-size: 18px;
  margin: 0;
  box-shadow: 2.5px 2.5px 0px 0px rgba(0,0,0,1);
}

input:first-of-type {
  margin-bottom: 30px;
}

input:nth-of-type(2) {
  margin-bottom: 75px;
}

h3 {
  padding: 0;
  margin: 5px 0;
  font-size: 20px;
}

button {
  padding: 20px;
  background: rgb(122, 67, 151);
  border: 3px solid black;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 5px;
  box-shadow: 2.5px 2.5px 0px 0px rgba(0,0,0,1);
}

a {
  align-self: center;
}

span {
  color: red;
}

span + span {
  color: green;
}

i {
  font-size: 25px;
  position: relative;
  top: -115px;
  left: 320px;
  color: grey;
}

.hidden {
  display: none;
}


/******************************************
/* ADDITIONAL STYLES
/*******************************************/

