        /* Personalización del Navbar */
        .custom-navbar {
            background-color:rgba(243, 130, 38, 0.93); /* Cambia este color según tu preferencia */
        }
        .custom-navbar .navbar-brand,
        .custom-navbar .nav-link {
            color:rgb(0, 0, 0) !important; /* Color del texto */
        }
        .custom-navbar .nav-link:hover {
            background-color:rgba(255, 182, 123, 0.93);
            color:rgb(0, 0, 0) !important; /* Color al pasar el mouse */
        }

        /* Estilo para los botones */
        .btn {
            background-color:rgba(243, 130, 38, 0.93); /* Color de fondo del botón */
            border: none;
            color:rgb(0, 0, 0) !important; /* Color del texto */
        }
        .btn:hover {
            background-color:rgba(255, 182, 123, 0.93); /* Color al pasar el mouse */
        }

        /* Espaciado para el contenido principal */
        .main-content {
            margin-top: 70px; /* Ajusta esto según la altura del navbar */
        }

                /* Fondo Gradient */
        body {
/*             background: linear-gradient(135deg, #2c3e50, #4ca1af); */
            height: 100vh;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Estilo del Card */
        .login-card {
            width: 100%;
            max-width: 400px;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            background-color: #fff;
        }

        /* Logo */
        .imgUser{
        margin-left: auto;
        margin-right: auto;
        width: 130px;
        height: 130px;  
        }
        .imgUser img {
        height: 100%;
        }

        /* Título */
        .login-title {
            color: #34495e;
            font-weight: bold;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* Inputs */
        .form-control {
            border-radius: 5px;
            border: 1px solid #ced4da;
        }

        /* Botón Personalizado */
        .custom-btn {
            background-color:rgba(243, 130, 38, 0.93);
            border: none;
            color: #fff;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .custom-btn:hover {
            background-color:rgba(255, 182, 123, 0.93); /* Color al pasar el mouse */
        }

        /* Mensaje de Error */
        .error-message {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 1rem;
            text-align: center;
        }