body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            box-sizing: border-box;
        }
        .container {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 400px;
            text-align: center;
        }
		@media (min-width: 1024px) {
    		.container {
        	width: 60%; /* Ocupa el 60% del ancho de la pantalla */
        	max-width: 800px; /* Máximo ancho en pantallas grandes */
    		}
		}
        h1 {
            font-size: 1.5em;
            color: #333333;
            margin-bottom: 10px;
        }
        img.logo {
            max-width: 350px;
			width: 80%;
            margin-bottom: 15px;
        }
        form {
            margin-top: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #555555;
            text-align: left;
        }
        input[type="text"], input[type="number"],input[type="password"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #cccccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        button {
            background-color: #007bff;
            color: #ffffff;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1em;
            width: 100%;
        }
        button:hover {
            background-color: #0056b3;
        }
        .password {
            font-size: 1.2em;
            font-weight: bold;
            color: #007bff;
            margin: 15px 0;
            word-wrap: break-word;
        }
        .copied-message {
            color: #28a745;
            font-size: 0.9em;
            margin-top: 5px;
        }
        .error {
            color: #ff0000;
        }
        .options {
            margin-top: 10px;
            text-align: left;
        }
        .explanation {
            margin-top: 20px;
            font-size: 0.9em;
            color: #555555;
            text-align: left;
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .explanation h2 {
            font-size: 1.2em;
            color: #333333;
        }
        .explanation p {
            margin-bottom: 10px;
        }
        .counter {
            margin-top: 20px;
            font-size: 1em;
            color: #333333;
        }