body {
  margin: 0;
  padding: 0%;
}
.login-success {
  display: flex;
  justify-content: center;
  align-items: center;
}
#success-message {
  color: #4caf50;
  display: none; 
  position: absolute;
  top: 20%;
  background-color: #f7f7f7;
  width: 250px;
  padding: 20px;
}

.bg-container {
  background-color: white;
  height: 85vh;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  width: 100vw;
}
.container {
  text-align: right;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: center;
  width: 400px;
  flex-direction: column;
  max-width: 500px;
  padding: 20px;
  background-color: #4caf50;
  border-radius: 20px;
}
label {
  text-align: left;
  font-size: large;
  color: #f0f0f0;
  padding: 10px;
}
input {
  padding: 10px;
  margin: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
input:focus {
  outline: none;
  border-color: #2bce41;
  box-shadow: #ccc;
}
.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.login-error {
  display: flex;
  justify-content: center;
  align-items: center;
}
#error-message {
  color: #4caf50;
  display: none;
  position: absolute;
  top: 90px;
  background-color: #f7f7f7;
  width: 250px;
  padding: 20px;
}
#login-error-btn {
  background-color: #4caf50;
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
}
.btn {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  margin: 10px;
  border-radius: 4px;
  cursor: pointer;
  width: fit-content;
  padding: 10px 20px;
}
footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: grey;
}
