
body{
    font-family: 'Signika Negative', sans-serif;
    background: url(../assets/pontode.jpg) no-repeat center top, linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    overflow-y: scroll; /* Asegura que el contenido sea desplazable */
    scrollbar-width: thin; /* Para Firefox */
    scrollbar-color: #00bf63 #04253a; /* Para Firefox */

}
::-webkit-scrollbar {
  width: 12px;
  background-color: #04253a;
}

/* Personalizar el pulgar de la barra de desplazamiento en WebKit */
::-webkit-scrollbar-thumb {
  background-color: #00bf63;
  border-radius: 10px;
  border: 3px solid #04253a;
}

/* Personalizar el track de la barra de desplazamiento en WebKit */
::-webkit-scrollbar-track {
  background-color: #04253a;
  border-radius: 10px;
}

/* Opcional: cambiar el color del pulgar al hacer hover en WebKit */
::-webkit-scrollbar-thumb:hover {
  background-color: #00bf63;
}


.box-area{
    width: 930px;
}



.right-box{
    padding: 40px 30px 40px 40px;
}


::placeholder{
    font-size: 16px;
}

.rounded-4{
    border-radius: 20px;
}
.rounded-5{
    border-radius: 30px;
}




@media only screen and (max-width: 768px){

     .box-area{
        margin: 0 10px;

     }
     .left-box{
        height: 100px;
        overflow: hidden;
     }
     .right-box{
        padding: 20px;
     }

}
.img-fluido {
  width: 0%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .img-fluido {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
}
}
.img-fluidos {
  width: 0%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .img-fluidos {
  width: 15%;
  max-width: none;
  height: auto;
  margin: 0 auto;
}
}
/* Define las animaciones de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Opcionalmente puedes agregar más animaciones */
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}
 /* Efecto futurista del logo */
.login-logo {
  width: 180px;
  transform: scale(1.3);
  transform-origin: center;
  filter: drop-shadow(0 0 15px rgba(0,255,208,0.4));
  /*transition: transform 0.3s ease, filter 0.3s ease;*/
}
.login-logo:hover {
  transform: scale(1.35);
  filter: drop-shadow(0 0 25px rgba(0,255,208,0.8));
}

/* Fondo con overlay suave */
body {
  background: linear-gradient(180deg, rgba(0,38,62,0.85), rgba(0,179,152,0.7)), url("{% static 'assets/pontode.jpg' %}") center/cover no-repeat;
  color: #00263E;
  font-family: 'Signika Negative', sans-serif;
}

/* Caja central */
.box-area {
  width: 920px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,38,62,0.3);
  overflow: hidden;
  animation: fadeUp 0.8s ease-out;
}

/* Animación de entrada */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Formulario */
.right-box {
  padding: 45px;
}

.right-box h2 {
  color: #00B398;
  font-weight: 700;
  text-align: center;
}

.right-box p {
  color: #00263E;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}

.btn-outline-dark {
  border: 2px solid #00B398;
  color: #00B398;
  font-weight: 600;
 /* transition: all 0.3s ease;*/
}
.btn-outline-dark:hover {
  background: linear-gradient(90deg, #00B398, #00FFD0);
  border-color: transparent;
  color: #00263E;
  box-shadow: 0 0 15px rgba(0,255,208,0.4);
}

/* Toggle contraseña */
.password-toggle {
  position: relative;
  width: 100%;
}
.password-toggle i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #00B398;
}

@media (max-width: 768px) {
  .box-area { width: 100%; margin: 0 10px; }
  .left-box { display: none; }
}
/* === CAMPOS === */
.form-control {
  border: 1px solid rgba(0,179,152,0.4);
 /* transition: all 0.3s ease;*/
}
.form-control:focus {
  border-color: #00B398;
  box-shadow: 0 0 8px rgba(0,255,208,0.3);
}
/* === LOGO === */
.register-logo {
  width: 180px;
  transform: scale(1.3);
  transform-origin: center;
  filter: drop-shadow(0 0 15px rgba(0,255,208,0.4));
  /* transition: transform 0.3s ease, filter 0.3s ease;*/
}
.register-logo:hover {
  transform: scale(1.35);
  filter: drop-shadow(0 0 25px rgba(0,255,208,0.8));
}
