  body {
	    margin: 0;
	    display: flex;
	    height: 100vh;
	    font-family: 'Montserrat', sans-serif;
	}

	/* Partie image (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;
	}

	/* Partie login (30%) */
	.login-right {
	    width: 30%;
	    background-color: #FAFAFA;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    padding: 2em;
	}

	.login-container {
	    width: 100%;
	    max-width: 300px;
	    text-align: left;
	}

	.login-container h1 {
	    font-size: 2em;
	    margin-bottom: 1em;
	}

	.login-container input {
	    width: 100%;
	    padding: 10px;
	    margin: 10px 0;
	    font-size: 1em;
	    border: 1px solid #ccc;
	    border-radius: 4px;
	}

	.login-container button {
	    width: 100%;
	    padding: 10px;
	    background-color: rgb(0, 128, 0);
	    color: white;
	    border: none;
	    font-weight: bold;
	    border-radius: 4px;
	    cursor: pointer;
	}

	.register-link {
	    margin-top: 1em;
	    font-size: 0.9em;
	}
	.register-link a {
	    color: rgb(0, 128, 0);
	    text-decoration: none;
	}
	.register-link a:hover {
	    text-decoration: underline;
	}
	.forgot-password {
	    margin-top: 1em;
	    font-size: 0.9em;
	}
	.forgot-password a {
	    color: rgb(0, 128, 0);
	    text-decoration: none;
	}
	.forgot-password a:hover {
	    text-decoration: underline;
	}