/* Formulaire de contact */
.contact-form {
    padding: 30px;
    width: 100%;
    border-radius: 25px;
    margin: auto;
    background-color: #1f1f1f;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    color: #F5F5F5;
}

.form-input, textarea.form-control {
    border-radius: 10px;
    border: 3px solid;
    padding: 10px;
    background-color: #F5F5F5;
    transition: all 0.3s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    color: #323232;
    font-size: 14px;
}

.form-input {
    height: 40px;
}

.form-title {
    font-size: 50px !important;
}

.form-label {
    font-weight: bold;
    margin: 10px;
    white-space: nowrap;
    font-size: 16px;
}

textarea.form-control {
    width: 80%;
    resize: none;
}

.form-input:focus,
textarea.form-control:focus,
select:focus {
    border-color: #FEE281;
    outline: none;
}

.btn-form {
    background: linear-gradient(135deg, #8E271F, #FEE183);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
	display: block;
	font-weight: bold;
}

.btn-form:hover {
    background: linear-gradient(135deg, #A73027, #FFD35C);
}

.subtext {
    font-size: 0.9rem;
    color: #A9A9A9;
    margin-top: 5px;
}

/* Responsive */
@media screen and (min-width: 768px) {
    .form-label {
        min-width: 75px;
        text-align: right;
        display: inline-block;
    }

    .form-input,
    textarea.form-control {
        flex-grow: 1;
        width: 100%;
    }

    .form-group {
        display: flex;
        align-items: center;
    }
}

.g-recaptcha {
    display:flex;
    justify-content: center;
}

/* Message d'alerte */
.alert {
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    font-weight: bold;
    width: 90%;
    margin: 10px auto;
}

.alert-error {
    background-color: rgba(255, 99, 71, 0.3);
    color: #ff2600;
}
.alert-success {
    background-color: rgba(144, 238, 144, 0.3);
    color: #03b403;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.form-container ul li {
    color: #dc3545;
    font-weight: bold;
    font-size: 0.8rem;
}
