@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9fdff;
  font-family: "Poppins", sans-serif;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.container {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: #fff;
}

.hh {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.hh .logo {
  width: 100%;
  max-width: 70px;
}

.container h5 {
  text-align: center;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0.2rem;
  color: #0b8be0;
  margin-bottom: 1rem;
}

.container h4 {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1rem;
}

.container .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  height:55px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 0.5rem;
}

.container .form-group-button {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 12px;
}

.form-group input {
  border: none;
  text-decoration: none;
  outline: none;
  margin-left:.2rem;
  margin-top:.3rem;
  font-size:15px;
}

.form-group:hover {
  border: 1px solid #0b8be0;
}

.form-group:active {
  border: 1px solid #0b8be0;
}

.container .form {
  text-align: end;
  justify-content: end;
  margin-bottom: 1rem;
  font-size: 13px;
  margin-top: 0.5rem;
}

button {
  padding: 0.5rem;
  border: 1px solid #0b8be0;
  background: #0b8be0;
  border-radius: 5px;
  color: #fff;
  font-size:15px;
}

button:hover {
  border: 1px solid #0b8be0;
  background: #076db1;
  color: #fff;
}
