/* Css de la page de contact */
.container_form {
    width: 70%;
    max-height: 500px;
    max-width: 280px;
    background: #ffffff3f;
    position: relative;
    padding: 15px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: auto;
    top: 90px;
    padding-left: 40px;
    padding-right: 40px;
    left: 0;
    transform: translateY(-30px);
}

body {
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.body_form {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow-y: auto; 
}

form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
}

form input, form textarea {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
}

form input[type="file"] {
    margin-bottom: 20px;
}

form .button-group {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    bottom: 50px;
    position: relative;
}

form .button-group input {
    flex: 1;
    padding: 10px; 
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form .button-group input[type="submit"] {
    background-color: #007BFF;
    color: white;
}

form .button-group input[type="submit"]:hover {
    background-color: #0056b3;
}

form .button-group input[type="reset"] {
    background-color: #dc3545;
    color: white;
}

form .button-group input[type="reset"]:hover {
    background-color: #a71d2a;
}

@media (max-width:768px) {
    header{
        top: 20px;
    }
    
}
