html,
body {
  height: 100%;
}
a {
    color: #1fbd67;
}
a:hover,
a:focus {
    color: #146f3c;
}
.form-signin {
  max-width: 330px;
  padding: 1rem;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#avatarContainer {
    position: relative;
    display: inline-block;
}
.avatar {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
}
/* Estilos para centrar los elementos en el contenedor */
        #ads {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Estilos por defecto para todos los banners */
        #banners #banner-grande,
        #banners #banner-movil {
            display: none;
        }

        /* Media query para pantallas grandes */
        @media only screen and (min-width: 768px) {
            #banners #banner-grande {
                display: block;
            }
        }

        /* Media query para dispositivos móviles */
        @media only screen and (max-width: 767px) {
            #banners #banner-movil {
                display: block;
            }
        }

#avatar {
  max-width: 80px;
  max-height: 80px;
  border-radius: 50%;
 
}
#user_avatar {
  border-radius: 50%; /* Establece un radio del 50% para redondear la imagen */
  width: 150px; /* Ajusta el ancho según tus necesidades */
  height: 150px; /* Ajusta la altura según tus necesidades */
}

.camera-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Transparencia del 50% en blanco */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: pointer;
}

.camera-overlay i {
    font-size: 2em;
    color: #333; /* Color del ícono de la cámara */
}

#avatarContainer:hover .camera-overlay {
    opacity: 1;
}
