/* login */
.login {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  position: relative;
}

.header {
  font-family: var(--title);
  color: var(--text-light);
  font-size: 3rem;
}

.note {
  color: var(--text-light);
  font-size: .8rem;
}

.group {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.input {
  margin-top: 5px;
  padding: 7px 15px;
  border: none;
  outline: none;
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--text-light);
  color: var(--text-light);
  width: 100%;
  font-weight: 700;
}

.button {
  margin: 40px 0;
}

.btnFormat {
  padding: 8px 16px;
  width: 150px;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background-color: var(--bg-dark);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btnFormat:hover {
  background-color: #383737;
  transform: scale(1.05);
}

.btnFormat i {
  font-size: 1rem;
}