* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

#main {
  width: 100%;
  height: 100%;
  background-color: #f7f2ee;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 90%;
  max-width: 400px;
}
#main .top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#main .top h2 {
  text-align: center;
  font-size: 2rem;
}
#main .top p {
  font-size: 0.95rem;
  color: grey;
}
#main .bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#main .bottom .pass {
  background-color: white;
  display: flex;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.9rem;
  width: 100%;
}
#main .bottom .pass input {
  width: 100%;
  border: none;
  outline: none;
}
#main .bottom .pass img {
  width: 20px;
}
#main .bottom button {
  color: white;
  border: none;
  background-color: #3b82f6;
  padding: 1rem;
  border-radius: 0.9rem;
  font-size: 1rem;
}
#main .bottom button:hover {
  background-color: #0e5cda;
  transition: all cubic-bezier(0.19, 1, 0.22, 1);
}
#main .bottom button:disabled {
  background-color: #b8bec7;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.7;
}