.form-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main {
	display: flex;
    justify-content: center;  /* Centre horizontalement */
}

.honeypot {
	display: none; /* Cache le champ piège */
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #004494;
}

.login-link {
    text-align: center;
    margin-top: 15px;
}

.login-link a {
    color: #0056b3;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}