/* General Styles */
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #EA4992;
            margin: 0;
            font-family: Arial, sans-serif;
        }
        .login-container {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
            box-sizing: border-box;
        }
        .login-container h2 {
            margin: 0 0 20px;
            text-align: center;
        }
        .login-container form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .login-container input[type="text"],
        .login-container input[type="password"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }
        .login-container input[type="submit"] {
            width: 100%;
            padding: 10px;
            background-color: #EA4992;
            border: none;
            border-radius: 5px;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }
        .login-container p {
            color: red;
            text-align: center;
        }

.registro-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.registro-container h2 {
    margin: 0 0 20px;
    text-align: center;
    color: #333;
}

/* Input Fields and Buttons */
.registro-container select,
.registro-container input[type="text"],
.registro-container input[type="password"],
.registro-container input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px; /* Bordes redondeados */
    box-sizing: border-box;
    font-size: 14px;
}

.registro-container input[type="submit"] {
    background-color: #EA4992;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.registro-container input[type="submit"]:hover {
    background-color: #d14080;
}

/* Error and Success Messages */
.error, .exito {
    padding: 10px;
    border-radius: 5px; /* Bordes redondeados */
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.exito {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

        .menu-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 400px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            position: fixed;
            top: 0;
            left: -100%;
            height: 100%;
            transition: left 0.3s ease;
            z-index: 1000;
        }
        .menu-open {
            left: 0;
        }
        .menu-header {
            background-color: #EA4992;
            color: #fff;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .menu-header h2 {
            margin: 0;
            flex: 1;
        }
        .menu-list {
            list-style-type: none;
            padding: 0;
            margin: 20px 0;
        }
        .menu-list li {
            padding: 10px 20px;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
            position: relative;
        }
        .menu-list li:hover {
            background-color: #f0f0f0;
        }
        .submenu {
            display: none;
            padding-left: 20px;
        }
        .submenu-open {
            display: block;
        }
        .user-info {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #EA4992;
            color: #fff;
            padding: 10px;
            text-align: center;
        }
        .toggle-menu {
            position: fixed;
            top: 20px;
            left: 60px;
            background-color: #EA4992;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 20px;
            text-align: center;
            cursor: pointer;
            z-index: 2000;
        }
        .content-container {
            margin-left: 100px;
            padding: 20px;
            height: calc(100vh - 40px); /* Ajusta la altura de la ventana menos el margen */
        }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
