body {
    background:
    url('../img/fondo.webp') no-repeat center center fixed ;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
    background-size: cover;
    height: 100vh;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

/* Inputs más grandes y redondeados */
.form-control {
    transition: all 0.3s ease-in-out;
    padding: 12px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.estilo_logineado {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.534);
    padding: 0 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-size: 16px;
}

/* Cuando el label tiene hover */
.estilo_logineado:hover {
    top: 0;
    left: 10px;
    font-size: 14px;
    color: #262627;
}

/* Expansión del input con sombra cuando el label tiene hover */
.estilo_logineado:hover+.form-control {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.07);
}

/* Mantiene el label arriba si el input está en uso */
.form-control:focus+.estilo_logineado,
.form-control:not(:placeholder-shown)+.estilo_logineado {
    top: 0;
    left: 10px;
    font-size: 14px;
    color: #262627;
}

/* Ícono de mostrar contraseña */
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #555;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #26282b;
}