/* login.css */
.login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.login-screen {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

.app-title {
  text-align: center;
  margin-bottom: 20px;
}

.login-form {
  text-align: center;
}

.control-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.error-message {
  color: red;
}

