.root {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 0 24px;
  background-color: #f5f5f5;
}
.mid-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding-top: 80px;
  max-width: 330px;
  width: 100%;
}
.logo-container {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-container img {
  width: 100%;
}
.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  width: 100%;
  max-width: 330px;
}
.card-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: rgb(17 24 39);
  font-weight: bold;
}
.other-form {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: normal;
  color: #313131;
}
.other-form a {
  color: #0f8bdf;
}
.inputs-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.input {
  height: 3.25rem;
  width: 100%;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: #0000;
  font-size: 13px;
  outline: none;
  background-color: #f3f4f6;
  padding-left: 2.375rem;
  padding-right: 0.875rem;
  color: rgb(17 24 39);
}
.submit {
  height: 3.25rem;
  width: 100%;
  border-radius: 0.75rem;
  border: none;
  font-size: 15px;
  outline: none;
  background-color: #0f8bdf;
  padding: 0.875rem;
  color: #fff;
  cursor: pointer;
  text-align: center;

  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.submit:hover {
  background-color: #0d7dc7;
}

.desc {
  color: rgb(17, 24, 39);
  margin-top: 8px;
  font-size: 16px;
  text-align: center;
  line-height: 28px;
}
