body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #1a2a23;
    font-family: Arial, sans-serif;
    background-image: url("https://vljaisdvadywiyqrvryd.supabase.co/storage/v1/object/public/categories_images//fondo.png");
}
.container {
  position: relative;
  background-color: #d9c6b1;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 30%;
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  justify-content: center;
  /* Otros estilos que necesites */
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://vljaisdvadywiyqrvryd.supabase.co/storage/v1/object/public/categories_images//Logo.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  opacity: 0.5; /* Ajusta la opacidad según prefieras */
  z-index: 0;
}

/* Aseguramos que el contenido dentro del contenedor se mantenga por encima */
.container > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    
}
.title {
    
    
    font-size: 30px;
    justify-self: flex-start;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;

}
.input-group {
    text-align: left;
    
}
.input-group label {
    font-weight: bold;
    display: block;
    font-size: 15px;
    color: black;
    margin-bottom: 5px;
}
.input-group input {
    width: 100%;
    padding: 8px;
    margin-top: 2vh;
    margin-bottom: 2vh;
    border: 1px solid #2d5540;
    border-radius: 5px;
    background-color: #4a6655;
    color: white;

}

.input-group input::placeholder {
    color:white;
  }
.btn {
    background-color: #2d5540;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}
.btn:disabled {
    background-color: #1f3a2b;
    cursor: not-allowed;
}

.btn:hover:not(:disabled) {
    background-color: #1f3a2b;
}
.toggle {
    margin-top: 10px;
    font-size: 14px;
    color: #2d5540;
    cursor: pointer;
}
.toggle a {
    color: #2d5540;
    font-weight: bold;
    text-decoration: none;
}
.toggle a:hover {
    text-decoration: underline;
}
.error {
    color: red;
}

.password-wrapper {
    position: relative;
  }
  
 
  
  .toggle-password {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  

  @media (min-width: 992px) {
    .navbar-collapse {
      justify-content: space-around;
    }
    .navbar-nav {
      width: 80%;
      display: flex;
      justify-content: space-around;
    }
  }

    /* Estilos del navbar (Appbar) */
    .navbar {
        background-color: #3e2723;
        padding: 15px 20px;
      }
      .navbar-brand img {
        width: 100px;
      }
      .navbar-nav .nav-item {
        position: relative;
      }
      .navbar-nav .nav-link {
        color: #365a54 !important;
        font-weight: bold;
        padding: 10px 15px;
        transition: color 0.3s ease-in-out;
      }
      .navbar-nav .nav-link:hover {
        color: #ffe0b2 !important;
      }
      
      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border-radius: 8px;
        border: none;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.2s ease;
        z-index: 1000;
        width: 200px;
      }
      .dropdown-item {
        padding: 12px 15px;
        font-size: 16px;
        color: #333;
        transition: background-color 0.3s ease, color 0.3s ease;
      }
      .dropdown-item:hover {
        background-color: #ffe0b2;
        color: #3e2723;
      }
      .nav-item:hover .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }
      /* Íconos */
      .icon {
        width: 25px;
        height: auto;
      }.icon{
     text-decoration: none;
     border: none; 
      background-color: transparent;
  }
      
      /* Para evitar que el navbar fijo tape el contenido */
      body {
        padding-top: 70px;
      }


      .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: white;
        color: #FFF;
        border-radius: 50%;
        padding: 10px;
        text-align: center;
        font-size: 30px;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
      }