Formulaire de Test de Contact
Ce formulaire est destiné aux tests automatiques. Les messages sont envoyés à notre équipe technique.
.test-contact-form {
max-width: 600px;
margin: 20px auto;
padding: 30px;
background: #f9f9f9;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.test-contact-form h2 {
color: #333;
margin-bottom: 10px;
text-align: center;
}
.test-contact-form p {
text-align: center;
color: #666;
margin-bottom: 30px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 12px 15px;
border: 2px solid #ddd;
border-radius: 5px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: #007cba;
box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}
.btn-submit {
background: #007cba;
color: white;
padding: 12px 30px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
width: 100%;
}
.btn-submit:hover {
background: #005a87;
}
.contact-success {
background: #d4edda;
color: #155724;
padding: 15px;
border-radius: 5px;
margin-top: 20px;
border: 1px solid #c3e6cb;
}
.contact-error {
background: #f8d7da;
color: #721c24;
padding: 15px;
border-radius: 5px;
margin-top: 20px;
border: 1px solid #f5c6cb;
}