body {
  font-family: Poppins;
  margin: 0;
  min-height: 100vh;

  display: flex;
  flex-direction: column;

  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(91,124,255,.15), transparent 55%),
    radial-gradient(900px 500px at 90% 15%, rgba(34,211,238,.10), transparent 60%),
    #0b0f19;

  animation: fadeIn 0.4s ease;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#login_data {
  text-align: center;
  font-size: 0.8rem;
}

h1 {
  color: #fff;
}

.inputs, .inputsF {
  color: #fff;
  background-color: #30303022;

  height: 2.8rem;
  padding: 0 15px;
  font-size: 0.95rem;

  width: 100%;
  max-width: 30rem;

  border-radius: 15px;
  border: solid 1px rgba(153, 153, 153, 0.274);

  margin-top: 5px;
  box-sizing: border-box;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

.row .inputsF {
  flex: 1;
  max-width: none;
  margin: 0;
  margin-top: 15px;
  min-width: 0;
}

#login_btn {
  color: #686868;
  height: 3rem;
  width: 12rem;
  border-radius: 25px;
  background-color: #30303073;
  border: solid 1px rgba(153, 153, 153, 0.274);

  display: block;
  margin: 15px auto 0 auto;
}

#login_btn:hover {
  color: white;
  border: solid 1px rgba(255, 255, 255, 0.521);
  cursor: pointer;
}

.inputs::placeholder,
.inputsF::placeholder {
  opacity: 50%;
}

footer {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding-bottom: 25px;
}

a {
  color: #ffffff49;
  text-decoration: none;
}

@media (max-width: 600px) {
  .row {
    flex-direction: column;
  }
  #login_btn {
    width: 100%;
    max-width: 30rem;
  }
}

.switch-auth {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #ffffff80;
}

.switch-link {
  color: #00ff9caa;
  text-decoration: none;
  margin-left: 6px;
}

.switch-link:hover {
  color: #00ff9c;
  text-decoration: underline;
}