/* === CONTENEUR GLOBAL === */
#form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    flex-direction: column;
    position: relative;
    min-height: 200px;
}

/* === FORMULAIRE === */
#oro-form {
    background-color: #fcfcfc;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 36rem;
    width: 100%;
    text-align: center;
    transition: transform 1s ease, opacity 1s ease, visibility 0s 1s;
}
#oro-form.hidden {
    transform: translateY(300px);
    position: absolute;
}

/* === CHAMPS === */
#oro-form input[type="text"],
#oro-form input[type="email"] {
    width: 100%;
    padding: 8px 10px;
    margin: 4px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
#oro-form input[type="text"]:focus,
#oro-form input[type="email"]:focus {
    border-color: #869b33;
    outline: none;
}

/* === BOUTON === */
#oro-form button {
    width: 100%;
    padding: 10px;
    background-color: #869b33;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 8px;
}
#oro-form button:hover {
    background-color: #6e8029;
}

/* === DISCLAIMER === */
.oro-form-disclaimer {
    font-size: 0.75rem;
    color: #555;
    margin-top: 5px;
	text-align: justify;
}
.oro-form-disclaimer label {
	gap:4px;
}

/* === VERSION MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    #oro-form {
        max-width: 95%;
        padding: 10px 14px;
    }
    #oro-form input[type="text"],
    #oro-form input[type="email"] {
        padding: 7px 9px;
        font-size: 0.9rem;
		height: 36px;
		margin: 3px 0;
    }
    #oro-form button {
        padding: 4px;
        font-size: 1rem;
		margin-top: 4px;
		min-height: 38px;
    }
    .oro-form-disclaimer {
        font-size: 0.6rem;
		letter-spacing: -0.4px;
    }
	.oro-form-disclaimer label {
	gap:0px;
}
}

@media (max-width: 400px) {
    #oro-form {
        padding: 8px 12px;
    }
    #oro-form input[type="text"],
    #oro-form input[type="email"] {
        padding: 6px 8px;
        font-size: 0.8rem;
		height: 36px;
    }
    #oro-form button {
        padding: 4px;
        font-size: 0.9rem;
		margin-top: 2px;
		min-height: 30px;
    }
}
@supports (-webkit-touch-callout: none) {
	#oro-form input,
	#oro-form textarea,
	#oro-form select {
		font-size: 16px !important;
	}
}