body {
    margin: 0;
    display: flex;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

/* Image gauche 70% */
.image-left {
    width: 70%;
    background-color: rgb(0, 128, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Formulaire droite */
.register-right {
    width: 30%;
    background-color: #FAFAFA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
}
.register-container {
    width: 100%;
    max-width: 300px;
    text-align: left;
}
.register-container h1 {
    font-size: 2em;
    margin-bottom: 1em;
}
.register-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.register-container button {
    width: 100%;
    padding: 10px;
    background-color: rgb(0, 128, 0);
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
.login-link {
    margin-top: 1em;
    font-size: 0.9em;
}
.login-link a {
    color: rgb(0, 128, 0);
    text-decoration: none;
}
.login-link a:hover {
    text-decoration: underline;
}