body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f6f8;
}

.container {
  display: flex;
  height: 100vh;
}

.left-panel {
  flex: 1;
  background-image:linear-gradient(90deg,#124d7d 0%,#0b2238 100%) !important;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.left-panel h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 30px;
}

.illustration img {
  max-width: 80%;
  height: auto;
  margin-bottom: 30px;
}

footer {
  font-size: 14px;
  margin-top: auto;
}

.right-panel {
  flex: 1;
  background-color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-panel h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

input[type="text"],
input[type="password"],
select {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.options {
  margin-bottom: 20px;
}

.language-select {
  margin-bottom: 20px;
}

button {
  padding: 12px;
  background-color: #005baa;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #004080;
}
