body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #FFA500;
    text-align: center;
    margin: 0;
    padding: 0;
}

.material-icons {
    font-size: 18px; /* Tamaño del icono */
    color: #0B5345; /* Color amarillo tipo queso cheddar */
    margin-top: 65%;
    transition: color 0.3s; /* Transición suave del color */
}

.iconspan {
    font-size: 12px; 
    color: #000000; 
}

.container {
    background: #FFf;
   
    border-radius: 10px;
    width: 260px;
    height: 260px;
    margin: 0 auto;
   
    box-shadow: 0 0 15px #117A65;
    
}

h2 {
    color: #000;
}

label {
    display: block;
    margin-top: 8px;
    color: #000;
}

/* Estilo para los campos de entrada */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: 220px;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #117A65;
    border-radius: 5px;
    font-size: 12px; /* Cambia el tamaño del texto */
    font-family: Arial, sans-serif; /* Cambia la tipografía */
    background: #FFFFFF;
}

button {
    background-color: #0B5345;
     width: 210px;
    color: #E8F6F3 ;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

        .center-image {
            text-align: center;
        }
        .center-image img {
            max-width: 35%;
            height: auto;
        }
        
   /* Estilos para el mensaje de error */
        .error-message {
            color: white;
          
            font-size: 12px;
            padding: 0px;
            margin-top: 10px;
            display: none; /* Inicialmente oculto */
        }
 * {margin:0; padding:0;}
*,
*::before,
*::after {
  box-sizing: inherit;
}



.bb, .bb::before, .bb::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.bb {
  width:260px;
  height: 260px;
  margin: auto;
  
  color: #117A65;

}
.bb::before, .bb::after {
  content: '';
  margin: -5%;
  border: 2px solid;
   border-radius: 10px;

  animation: clipMe 8s linear infinite;
}
.bb::before {
  animation-delay: -4s;
}

@keyframes clipMe {
  0%, 100% {
    clip: rect(0px, 286.0px, 2.6px, 0px);
  }
  25% {
    clip: rect(0px, 2.6px, 286.0px, 0px);
  }
  50% {
    clip: rect(286px, 286.0px, 286.0px, 0px);
  }
  75% {
    clip: rect(0px, 286.0px, 286.0px, 286px);
  }
}