@import url(./configs/setup.css);

.main-wrapper {
  min-height: 100vh;
}

.section-wrapper {
  text-align: center;
}

@media only screen and (max-width: 639px) {
  .content {
    width: 100%;
  }
}

@media only screen and (min-width: 640px) {
  .content {
    width: 500px;
  }
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
}

#sign-in-form {
  margin-top: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  padding: 1rem;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

input {
  display: block;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  padding-right: 3rem;
  border-radius: 0.375rem;
  border-width: 2px;
  outline-style: none;
  width: 100%;
  font-weight: 500;
  background-color: #ffffff;
  border-color: #0d1117;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

input:focus {
  border: 2px solid var(--crystalBlue);
}

.password-input-wrapper {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#show-password-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin-right: 1rem;
}

.submit-btn {
  background: var(--fujiGray);
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-radius: 0.5rem;
}
