body.inscription-page {
    position: relative;
}

body.inscription-page::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--vert-clair);
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

body.inscription-page .content-wrapper {
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
}

.registration-container, .main-container {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 500px;
    max-width: 100%;
    z-index: 1;
}

.header-logo h1, .registration-header h1 {
    font-size: 26px;
    color: var(--vert-fonce);
    text-align: center;
    margin-bottom: 20px;
}

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

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

.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--bordure);
    box-sizing: border-box;
    box-shadow: 0 0 5px rgba(0, 100, 0, 0.2);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.registration-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--vert-principal);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.terms-text {
    font-size: 13px;
    color: #666;
    margin: 15px 0;
    text-align: center;
    line-height: 1.4;
}

.terms-text a {
    color: var(--vert-principal);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.terms-text a:hover {
    color: var(--vert-fonce);
    text-decoration: underline;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #444;
}

.login-link a {
    color: var(--vert-principal);
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.login-link a:hover {
    background-color: rgba(0, 100, 0, 0.08);
    color: var(--vert-fonce);
}