body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #007AFF;
}

input[type="text"],
input[type="password"] {
  width: calc(100% - 16px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007AFF;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.message-box {
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  background-color: #EAEAEA;
  color: #333;
}

a {
  color: #007AFF;
  text-decoration: none;
}

/* otro*/


.icono {
  text-align: center;
}

h1:hover {
  color: blueviolet;
}

a {
  color: blueviolet;
}

a:hover {
  color: #067e5a;
}

.animacion {
  -webkit-animation: swing 1s ease;
  animation: swing .5s ease;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  transition: all 0.3s ease;
}

/* codigo dividir*/
.divider {
  border: none;
  height: 1px;
  background-color: #c8c7cc;
  /* Color de línea similar a iOS */
  margin: 20px 0;
  /* Margen superior e inferior */
}

/*codigo spinner*/
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #54b9f3;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*osilacion*/
@-webkit-keyframes swing {
  15% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  30% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  50% {
    -webkit-transform: translateX(13px);
    transform: translateX(13px);
  }

  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
  }

  80% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swing {
  15% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }

  30% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }

  50% {
    -webkit-transform: translateX(13px);
    transform: translateX(13px);
  }

  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
  }

  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}