body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  margin: 0;
  background-color: #fff;
}

.container {
  text-align: center;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 9px;
  text-align: center;
  width: 300px;
  margin-top: 40px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.2);
}

.card input[type="password"],
input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 9px;
  font-size: 16px;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

.input-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
}

.help-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
  color: #7e7e7e;
}

.tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  position: absolute;
  bottom: 165%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  width: max-content;
  white-space: nowrap;
  font-size: 12px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}



.card button {
  width: 100%;
  padding: 10px;
  background-color: #0080c9;
  border: 1px solid #0080c9;
  border-radius: 9px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.2s;
  font-family: Poppins, sans-serif;
}

.card button:hover {
  background-color: #fff;
  color: #0080c9;
}

img.logo {
  display: block;
  margin: 0 auto;
  padding-bottom: 0px;
  padding-top: 75px;
}

p {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  margin: auto;
  color: #0080c9;
  cursor: pointer;
}

.tooltip p {
    color: #fff;
}

.tooltip p:hover {
    color: #0080c9;
}

p:hover {
  color: #000;
}

.links p {
  margin-top: 20px;
}
