body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h2,
h3 {
  text-align: center;
}

.theheaders {
  margin-top: 50px;
}

.theform {
  margin: 0 auto;
  max-width: 500px;
}

.thelabels {
  display: block;
  margin-bottom: 10px;
}

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap");

input[type="text"],
input[type="password"] {
  display: block;
  width: 100%;
  height: 40px;
  border-radius: 6px;
  border: 3px solid black;
  margin-bottom: 10px;
  padding-left: 5px;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

.thebutton {
  height: 40px;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
  font-family: "Open Sans", sans-serif;
  background-color: #e91e63;
  border: none;
  transition: background-color 0.5s;
}

.thebutton:hover {
  color: #e91e63;
  background-color: #000;
}

.everything {
  box-sizing: border-box;
  padding: 15px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  height: 500px;
  max-width: 500px;
  width: 100%;
}

@media (max-width: 1001px) {
  .everything {
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin: auto;
    width: 90%;
  }
}

@media (max-width: 500px) {
  .everything {
    height: 420px;
    width: 95%;
  }

  .thebutton {
    font-size: 16px;
  }

  .thelabels {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
}
