body{
  display: block;
  height: 100%;
  width: 100%;
  background-color: #292828;


}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 40%;
  padding: 3%;
  border-radius: 2%;
  position: relative;
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
}
.titolo
{
  font-size: 500%;
  text-align: center;

}


.Registra {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #ff7300;
}

.Registra::before {
  width: 18px;
  height: 18px;
}

.Registra::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.Registra::before,
.Registra::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: #ff7300;
}

.Messaggio,
.Accedi {
  font-size: 120%;
  color: rgba(255, 255, 255, 0.7);
}

.Accedi {
  text-align: center;
}

.Accedi a:hover {
  text-decoration: underline #b85606;
}

.Accedi a {
  color: #ff7300;
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}

.flex label {
  flex: 1;
}

.form label {
  position: relative;
}

.form label .input {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.form label .input + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.form label .input:placeholder-shown + span {
  top: 12.5px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  color: #ff7300;
  top: 0px;
  font-size: 0.7em;
  font-weight: 600;
}

.input {
  font-size: medium;
}

.submit {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  background-color: #ff7300;
  box-sizing: border-box;
}

.submit:hover {
  background-color: #b85606;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(3);
    opacity: 0;
  }


}