/* Reset */
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

/* Page centrée */
.register-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.register-form {
    width: 100%;
    max-width: 400px;
    background-color: #f9f9f9;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.register-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

/* Formulaire */
.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-span {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input {
    padding: 0.8rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
}

.input:focus {
    border-color: #000;
}

.label {
    font-weight: 600;
    color: #000;
}

/* Bouton submit */
.submit {
    padding: 0.8rem 0;
    border-radius: 25px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* Checkbox / span */
span.input-span a {
    color: #000;
    text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 500px) {
    .register-form {
        padding: 20px 15px;
    }
}
