.linovform-form {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--lato);
}

.linovform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.linovform-field input,
.linovform-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid var(--gris-sombre);
    border-radius: 6px;
    background-color: white;
    color: var(--gris-sombre);
    font-family: var(--lato);
}

.linovform-field input:focus,
.linovform-field textarea:focus {
    border-color: var(--rouge);
    outline: none;
    box-shadow: 0 0 0 2px rgba(208, 0, 0, 0.2);
}

.linovform-field.full {
    grid-column: span 2;
}

.linovform-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--rouge);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-family: var(--lato);
    transition: background-color 0.3s ease;
}

.linovform-btn:hover {
    background-color: var(--rouge-sombre);
}

/* Responsive layout for desktop */
@media screen and (min-width: 768px) {
    .linovform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .linovform-field.full {
        grid-column: 1 / -1;
    }
}
