.contact-form-container {
    max-width: 800px;
	height: 745px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.form-group {
    flex: 1;
    /*margin-bottom: 1.5rem;*/
}

.form-group.full-width {
    width: 100%;
}

label {
    display: block;
    /*margin-bottom: 0.5rem;*/
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1.5rem !important;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

input:focus,
textarea:focus {
    border-color: #4A90E2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.dropzone-upload {
    border: 2px dashed #e0e0e0;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropzone{
	border: 2px solid #e0e0e0 !important;
    border-radius: 6px !important;	
}

.dropzone-upload:hover {
    border-color: #4A90E2;
    background: #f0f7ff;
}

.dropzone-upload .dz-message {
    margin: 1rem 0;
}

.upload-icon {
    margin-bottom: 1rem;
    color: #666;
}

.upload-message {
    color: #666;
}

.upload-message strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 0.5rem;
}

.submit-group {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #357ABD;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Styles spécifiques à Dropzone */
.dropzone .dz-preview {
    margin: 1rem;
}

.dropzone .dz-preview .dz-image {
    border-radius: 6px;
}

.dropzone .dz-preview .dz-progress {
    height: 4px;
    border-radius: 2px;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #4A90E2;
}

.dropzone .dz-preview .dz-error-message {
    color: #e74c3c;
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    font-size: 0.9em;
    color: #666;
}

.remove-file {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.remove-file:hover {
    background: rgba(231, 76, 60, 0.1);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress {
    width: 0;
    height: 100%;
    background: #4A90E2;
    transition: width 0.3s ease;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}