* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #000;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    color: #000;
    margin-bottom: 10px;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
}

input[type="text"],
select, 
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #818385;
    border-radius: 4px;
    font-size: 16px;
}

select {
    height: 40px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #72B42C;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #5d9a24;
}

.mensaje-exito {
    background-color: #72B42C;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.mensajes-inspiradores {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: center;
    display: none;
}

.frase-pequena {
    font-style: italic;
    margin-bottom: 15px;
    color: #000;
    font-size: 1.1em;
}

.frase-eco {
    font-weight: bold;
    font-size: 1.3em;
    color: #000;
    margin-top: 10px;
}

.texto-verde {
    color: #72B42C;
}

.enlace-container {
    font-size: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #818385;
}

.boton-redireccion {
    background-color: #72B42C;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
}

.boton-redireccion:hover {
    background-color: #5d9a24;
}

/* Estilos para indicar campos requeridos */
label[required]::after {
    content: " *";
    color: #e74c3c;
}

/* Estilos responsivos */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    form {
        padding: 20px;
    }
    
    .mensajes-inspiradores,
    .mensaje-exito {
        padding: 15px;
    }
    
    .boton-redireccion {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.enlace-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #818385;
}

.enlace-redireccion {
    display: inline-block;
    background-color: #72B42C;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.enlace-redireccion:hover {
    background-color: #5d9a24;
    text-decoration: none;
}

/* Estilo para móviles */
@media (max-width: 600px) {
    .enlace-redireccion {
        padding: 10px 15px;
        font-size: 14px;
    }
}