* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.long-pass {
  width: 85%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.input-largo-clave {
  width: 60px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding-left: 7px;
}

.container {
  width: 90%;
  height: 80px;
  min-width: 400px;
  max-width: 600px;
  border: 1px solid grey;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(58, 185, 58, 0.908);
}

button {
  border: 1px solid;
  padding: 10px 20px;
  border-radius: 6px;
  background-color: rgb(62, 167, 62);
  color: white;
  font-weight: bold;
}

@media(max-width:650px) {
  p {
    font-size: 10px;
    transition: .2s;
  }
}