body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

.language-switch {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
}

.login-box, .info-box {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin-bottom: 1.5rem;
}

input {
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

button {
  padding: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  background-color: #005B99;
  color: white;
  border: none;
  border-radius: 4px;
}

button:hover {
  background-color: #004C80;
}

.error-message {
  color: red;
  font-weight: bold;
  margin-top: 1rem;
}

a {
  color: #005B99;
  text-decoration: none;
}