/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #CF6AA0;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 10px; /* Espacio superior e inferior */
}

.container {
    max-width: 800px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.main-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

h1, h2 {
    color: #333;
    margin-bottom: 20px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #cf6aa0;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.menu button, .menu a {
    background-color: #fff;
    color: #cf6aa0;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.menu button:hover, .menu a:hover {
    background-color: #f4f4f4;
}

.votacion {
    margin-top: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: left;
}

input[type="tel"], input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #CF6AA0;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: rgb(252, 10, 139);
}

a {
    color: #CF6AA0;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
}

a:hover {
    text-decoration: underline;
}

.error {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
}

.campo-estatico {
    margin-top: 20px;
}

.campo-estatico .titulo_mf_oro {
    font-weight: bold;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.footer-logo {
    max-width: 50px;
    height: auto;
    margin-right: 10px;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 15px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu button, .menu a {
        width: 100%;
        margin-bottom: 10px;
    }
}