.error {color: white;}

input[type=submit]{
  background-color: #7500c0;
  border: none;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  grid-column: 3;
}

input[type=submit]:hover{
  background-color: #a100ff
}

html {
  background: url("./images/background.jpg") no-repeat center fixed;
  background-size: cover;
}
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.wrapper {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  grid-template-rows: repeat(3, 1fr);
  width: 100vw;
  height: 100vh;
  align-items: center;
}
.content {
  grid-column: 2;
  grid-row: 2;
  font-family: Arial;
  background-color: rgba(230, 230, 230, 0.75);
  border-style: solid;
  border-color: #7500c0;
  padding: 35px;
  display: grid;
  grid-template-rows: repeat(auto-fit,minmax(30px,1fr));
  grid-row-gap: 1em;
}
.header {
  grid-row: 1;
  text-align: center;
}
.paragraph{
  grid-row: 2;
}
.form{
  grid-row: 3;
  display: flex;
  flex-wrap:wrap;
  column-gap: 1em;
  align-items: center;
  justify-content: center;
}
.break {
  flex-basis: 100%;
  height: 0;
}

/* Popup container - can be anything you want */
.popup {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1; 
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}