*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: white;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  box-sizing: border-box;
}
.form {
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  color: black;
  outline: none;
  text-align: center;
  border-radius: 0.3rem;
  width: calc(33% - 20px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-left: 35%;
}

.form:focus {
  border-color: #78e6ff;
}

.text {
  flex: auto;
  margin-bottom: 2rem;
}