.bodyLogin {
    background: url(../../Images/Fondos/DSC_0868rr.jpg) no-repeat center center fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Mueve a la izquierda */
    padding-left: 10%;
    font-family: 'Roboto', sans-serif;
    
}

.text-center{
    color: #076324;
    font-size: 24px;
    font-weight: 600;
    
}
.image-agd {
    max-width:160px; /* Tamaño máximo de la imagen */
    max-height: auto; /* Mantiene la proporción */
    display: block;
    margin: 0 auto;
    justify-content: center;
}

.login-content {
    background: rgba(255, 255, 255, 0.9); /* Blanco translúcido */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    height: 500px;
}

.input-div {
    margin-bottom: 20px;
}

.input {
    width: 100%;
    padding: 6px;
    background-color: #b4cab5;
    border: none;
    border-radius: 4px;
}
.position-relative {
    position: relative;
    width: 100%; /* Ajusta al tamaño del contenedor */
    max-width: 100%; /* Puedes cambiar el tamaño del input */
}
.form-control {
    width: 100%;
    padding: 6px;
    background-color: #b4cab5 !important;
    border: none !important; /* Sin borde al iniciar */
    outline: none !important; /* Elimina el contorno azul de Bootstrap */
    transition: border 0.3s ease; /* Efecto suave al aparecer el borde */
    border-radius: 4px;
    padding-right: 35px; 
    transition: border-color 0.3s ease; /* Efecto suave al cambiar el borde */
}
.form-control:focus {
    color: rgb(0, 0, 0) !important;
    border: 2px solid black !important; /* Aparece borde negro en focus */
    outline: none !important; /* Evita el borde predeterminado del navegador */
    box-shadow: none !important; /* Eliminar resplandor de Bootstrap */
}
.btn-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-0%);
    border: none;
    background: none; /* Sin color de fondo */
    cursor: pointer;
    padding: 0;
}
.btn-eye i {
    font-size: 18px; /* Tamaño más pequeño del icono */
    color: #888; /* Color inicial del icono */
}

.btn-eye:hover i {
    color: #333; /* Cambia el color al pasar el mouse */
}

.btn {
    width: 80%;
    background: #076324;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #1F6B50;
    color: #e0e0e0;
}

.mensaje-emergente {
    position: fixed;
    text-align: center;
    top: 20px;
    right: 20px;
    background-color: #dd1313ce;
    color: white;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}