/**
Theme Name: carinerey
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carinerey
Template: astra
*/

/* Style pour le conteneur du formulaire */
.formulaire-contact-minimaliste-wrapper {
    background-color: transparent; /* Fond transparent pour s'adapter à n'importe quelle page */
    max-width: 600px; /* Largeur maximale du formulaire */
    margin: 40px auto; /* Centrage horizontal */
    padding: 30px;
    box-sizing: border-box;
}

/* Style général du formulaire */
.formulaire-contact-minimaliste {
    width: 100%;
}

/* Style pour chaque groupe (label + input) */
.formulaire-contact-minimaliste .form-group {
    margin-bottom: 20px;
}

/* Style pour les labels (Nom, Prénom, etc.) */
.formulaire-contact-minimaliste label {
    display: block;
    margin-bottom: 8px;
    color: #333; /* Couleur de texte sombre pour une bonne lisibilité sur fond blanc/clair */
    font-weight: bold;
}

/* Style pour les champs de saisie (input et textarea) */
.formulaire-contact-minimaliste input[type="text"],
.formulaire-contact-minimaliste input[type="email"],
.formulaire-contact-minimaliste textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd; /* Bordure discrète */
    border-radius: 15px; /* Les bords arrondis ! */
    background-color: #f9f9f9; /* Fond très légèrement grisé */
    color: #333; /* Couleur du texte saisi */
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

/* Style quand on clique sur un champ */
.formulaire-contact-minimaliste input:focus,
.formulaire-contact-minimaliste textarea:focus {
    outline: none;
    border-color: #ab8439; /* La couleur demandée apparaît au focus */
}

/* Style pour le bouton d'envoi */
.formulaire-contact-minimaliste input[type="submit"] {
    background-color: #ab8439; /* Couleur principale */
    color: white; /* Texte en blanc */
    border: none;
    border-radius: 15px; /* Bords arrondis */
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Style du bouton au survol de la souris */
.formulaire-contact-minimaliste input[type="submit"]:hover {
    background-color: #987532; /* Une teinte légèrement plus foncée */
    transform: translateY(-2px);
}

/* Style pour les messages de statut (succès ou erreur) */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 15px;
    text-align: center;
}

.form-message.success {
    background-color: #e5f5e6;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.form-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
    
    

