body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f0f0f0;
}
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  width: 400px;
  margin: 150px auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.logo img {
  width: 50%;
}
.logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.login-form {
  width: 400px;
}
.form-group {
  /* display: flex; */
  margin-bottom: 20px;
}
.form-group label {
  /* text-transform: uppercase; */
  display: block;
  margin-bottom: 15px;
}
.form-group input {
  width: 100%;
  height: 40px;
  padding: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.form-group input[type="text"] {
  font-size: 16px;
}
.form-group input:focus {
  border: 3px dotted #4caf50;
}
button[type="submit"] {
  width: 100%;
  height: 40px;
  background-color: #4caf50;
  color: #fff;
  padding: 0px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button[type="submit"]:hover {
  background-color: #3e8e41;
}
