body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-wrapper {
  display: flex;
  height: 100vh;
}

.login-left {
  flex: 0.7; /* plus étroit */
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container img {
  width: 220px;
  height: 200px;
}

.login-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #007bff;
  text-align: center;
}

.error-message {
  color: red;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

input {
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

button {
  padding: 0.8rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

button:hover {
  background-color: #0056b3;
}

.extra-links {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.extra-links a {
  color: #007bff;
  text-decoration: none;
}

.extra-links a:hover {
  text-decoration: underline;
}

.login-right {
  flex: 1.3; /* plus large */
  background-color: #007bff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}

.welcome-message h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.welcome-message p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.welcome-message img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
