/* Import Fonts */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Body */

body {
  font-family: Roboto, Arial, Verdana, sans-serif;
}

/* Main */

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Form */

form {
  margin: auto 25px;
  padding: 15px auto;
  border: 3px solid #761984;
  text-align: center;
  width: 90%;
  max-width: 500px;
  background-color: #fffaae
}

fieldset {
  border: 0 none;
  height: 100%;
  padding: 25px;
  margin: 10px 20px;
}

label {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: bold;

}

input {
  display: block;
  font-family: inherit;
  font-size: 2rem;
  width: 100%;
  margin: 10px auto;
  height: 60px;
  border: 1px solid #761984; 
}

button {
  font-family: inherit;
  cursor: pointer;
  background-color: #a5ffff;
  margin-top: 15px;
  padding: 10px 16px;
  font-size: 25px;
  width: 100%;
}

/* Output */
#output {
  text-align: center;
  font-size: 2rem;
  width: 85%;
  max-width: 500px;
  padding: 15px;
  margin-top: 25px;
  border: 3px solid #761984;
  min-height: 55px;
  
}

/* Alerts - For Errors */
.alert {
  color: #ff0c0c;
}
