body {
    font-family: Arial, sans-serif;
    background: #333;
    margin: 0;
    padding: 0;
}


header {
    background: #000000;
    color: #f3eeee;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav a {
    color: #e6d1b3;
    text-decoration: none;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    padding: 20px;
}

.verificacion {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.verificacion-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verificacion-imagen {
    margin: 20px 0;
}

.verificacion-imagen img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

#verificacion-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#verificacion-form label {
    margin-bottom: 10px;
}

#verificacion-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#verificacion-form button {
    background: #ff9900;
    color: #fffafa;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#verificacion-form button:hover {
    background: #ffa726;
}

.importante {
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}


.contenedor {
   
    display: flex;
    align-items: center;
}

.foto {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    margin-right: .4em;
}

.parrafo {
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: #c5c5c1;
}

footer {
    background: #333; 
    color: #fff; 
    padding: 20px; 
    text-align: center; 
}

.redes-sociales img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    header nav ul {
        flex-direction: column;
    }
    header nav ul li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .verificacion {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .verificacion {
        width: 100%;
        padding: 10px;
    }
    #verificacion-form input {
        padding: 5px;
    }
    #verificacion-form button {
        padding: 5px;
    }
}


footer {
    background-color: #000000;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 12px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer .social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

footer .social-links a {
    margin: 0 5px;
}

footer .social-links i {
    font-size: 16px;
}





/* MODAL BASE */
.modal-otp {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-otp-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 320px;
  color: #333;
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
}

.modal-otp-box button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #ffa726;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

/* SPINNER */
.spinner {
  margin: 0 auto 15px;
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top: 5px solid #ffa726;
  border-radius: 50%;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* X 3D naranja */
.error-x {
  display: none;
  font-size: 50px;
  color: ffa726;
  font-weight: bold;
  text-shadow: 2px 2px 5px #ffa726;
  margin-bottom: 15px;
  animation: rebote 0.6s ease forwards;
}


.candado {
  display: none;
  font-size: 50px;
  color: ffa726;
  text-shadow: 2px 2px 5px #ffa726;
  margin-bottom: 15px;
  animation: rebote 0.6s ease forwards;
}

@keyframes rebote {
  0% { transform: scale(0); }
  50% { transform: scale(1.4); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}


.palomita {
  display: none;
  font-size: 50px;
  color: ffa726;
  font-weight: bold;
  text-shadow: 2px 2px 5px #ffa726;
  margin-bottom: 15px;
  animation: rebote 0.6s ease forwards;
}
