html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
        body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #ffffff;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .container {
            flex: 1;
            max-width: 600px;
            margin: auto;
            padding: 50px 20px;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 8px;
			margin-top: 1px;
        }
        .contact-info {
            white-space: pre-line; 
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
        }
        .contact-form button {
            background-color: #1e88e5;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background 0.3s;
        }
        .contact-form button:hover {
            background-color: #1565c0;
			margin-top: 1px;
			margin-bottom: 5px;
        }
        .back-button {
            display: inline-block;
            margin-top: 30px;
			margin-bottom: 1px;
            background-color: #1e88e5;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1em;
        }
        .back-button:hover {
            background-color: #1565c0;
        }
        footer {
            background-color: #333;
            color: silver;
            text-align: center;
            padding: 8px;
            border-top: 2px solid #1565c0;
            box-shadow: 0px -5px 5px rgba(0,0,0,0.5);
            width: 100%;
            box-sizing: border-box;
        }
        .mensaje {
            font-size: 1.1em;
            margin-top: 15px;
        }
        .mensaje.exito {
            color: #00ff00;
        }
        .mensaje.error {
            color: #ff4444;
        }
		.logo {
            position: fixed;
            top: 20%; 
            left: 2%;
            width: 300px;
            height: auto;
            z-index: -1;
        }
        .logo2 {
            position: fixed;
            top: 20%;
            right: 2%;
            width: 300px;
            height: auto;
            z-index: -1;
        }