/* RESET GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* CONTENEDOR PRINCIPAL */
.container {
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* TÍTULO */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* ESTILO DEL FORMULARIO */
.form-group {
    margin-bottom: 15px;
}

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

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

/* BOTÓN */
button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #218838;
}

/* MEDIA QUERY PARA RESPONSIVE */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    input, textarea {
        font-size: 14px;
        padding: 8px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }

    footer {
        font-size: 12px;
        padding: 15px;
    }
    
}



/* Mensaje de éxito */
#successMessage {
    display: none;
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    background: #28a745;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animación de aparición */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* PIE DE PÁGINA */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #333;
    color: white;
    font-size: 14px;
}

footer p {
    margin: 5px 0;
}
.logo-empresa {
    width: 150px;  /* Ajusta según tamaño del logo */
    max-width: 80%;
}

/* HEADER (LOGO DEL CLIENTE) */
header {
    text-align: center;
    padding: 10px 0;
}

.logo-cliente {
    width: 200px;  /* Ajusta según tamaño del logo */
    max-width: 90%;
}
