body {
  background: #ff4f4f;
  height: 100vh;
  font-family: arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff4f4f;
  touch-action: manipulation;
  margin-top: -80px;
}

body,
html {
  overflow: hidden;
}

.container {
  position: relative;
}

form {
  background: rgba(255, 255, 255, 0.3);
  padding: 3rem;
  height: fit-content;
  border-radius: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  box-shadow: 20px 20px 40px -6px rgba(0, 0, 0, 0.2);
  text-align: center;
}

p {
  color: white;
  font-weight: 500;
  opacity: 0.7;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h4 {
  color: rgb(0, 0, 0);
  font-weight: 500;
  opacity: 1;
  font-size: 0.8rem;
  margin-bottom: 60px;
  margin: 0;
  margin-bottom: 15px;
  opacity: 0;
}

a {
  text-decoration: none;
  color: #ddd;
  font-size: 12px;
}

a:hover {
  text-shadow: 2px 2px 6px #00000040;
}

a:active {
  text-shadow: none;
}

input {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem;
  width: 200px;
  border-radius: 50px;
  box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  margin-bottom: 2em;
  background-color: #ffffff61;
}

input:hover,
input[type="email"]:focus,
input[type="password"]:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 4px 4px 60px 8px rgba(0, 0, 0, 0.2);
}

input[type="submit"]:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

::placeholder {
  color: #fff;
}

@media only screen and (max-width: 990px) {
  form {
    height: fit-content;
    padding: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  p {
    font-size: 2.28rem;
    margin-bottom: 114.2px;
  }

  input {
    padding: 1.71rem;
    width: 342.7px;
    font-size: 1.72rem;
  }
  a {
    font-size: 1rem;
  }
}

.waiting {
  border: 6px solid hsla(185, 100%, 62%, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  width: 8em;
  height: 8em;
  animation: spin 1s linear infinite;
}

.container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.waitingT {
  margin-bottom: 0px;
  opacity: 0.9;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
