body {
  margin: 60px 0;

  background: rgba(248, 248, 252, 1);
}

span {
  font-weight: 400;
  font-size: 14px;

  color: rgba(25, 30, 40, 1);
}
a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(25, 30, 40, 1);
}

.lrpage-header {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin: 20px auto;

  width: 100%;
  max-width: 400px;

  padding: 10px 20px;
}
.lrpage-header-logo {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;
}
.lrpage-header-logo img {
  position: relative;
  display: flex;

  width: auto;
  height: 35px;

  object-fit: contain;
  object-position: center center;
}

.lrpage-container {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 20px auto;

  width: 100%;
  max-width: 400px;

  padding: 40px 0;

  border-radius: 24px;

  background: white;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.lrpage-container-header {
  position: relative;
  display: flex;

  flex-direction: column;

  margin-bottom: 30px;

  padding: 0 40px;
}

.lrpage-container-header-title {
  position: relative;
  display: flex;

  flex-direction: row;
  width: 100%;

  font-weight: 600;
  font-size: 24px;

  color: rgba(25, 30, 40, 1);
}
.lrpage-container-header-subtitle {
  position: relative;
  display: flex;

  flex-direction: row;
  width: 100%;

  font-weight: 400;
  font-size: 14px;

  color: rgba(25, 30, 40, 1);
}

.lrpage-container-forms {
  position: relative;
  display: flex;
  overflow: hidden;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;
}
.lrpage-container-forms > .lrpage-form {
  transform: translateX(0%);
  min-width: 100%;
  transition: 0.3s all cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.lrpage-form {
  position: relative;
  display: flex;
  gap: 10px;

  flex-direction: column;

  margin-bottom: 10px;

  width: 100%;

  padding: 0 40px;
}
.lrpage-form-inputgroup {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
}
.lrpage-form-inputgroup-title {
  position: relative;

  margin-bottom: 2px;

  font-size: 18px;
  font-weight: 500;
}
.lrpage-form-input {
  position: relative;
  display: flex;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-size: 16px;

  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);

  transition: 0.3s all ease-out;
}
.lrpage-form-inputgroup-error {
  position: relative;

  margin-top: 3px;

  font-size: 14px;

  color: rgba(200, 0, 0, 1);
}

.lrpage-form-button {
  cursor: pointer;
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;

  width: 100%;
  height: 45px;

  padding: 0 20px;

  font-weight: 600;
  font-size: 14px;

  border-radius: 4px;

  opacity: 0.85;
  color: white;
  background: rgba(25, 30, 40, 1);

  transition: 0.3s all ease-out;
}
.lrpage-form-button--light {
  border: 2px solid rgba(25, 30, 40, 1);
  color: rgba(25, 30, 40, 1);
  background: white;
}
.lrpage-form-button span {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
.lrpage-form-button:hover,
.lrpage-form-button:focus {
  opacity: 1;
}
.lrpage-form-button--light:hover,
.lrpage-form-button--light:focus {
  border: 2px solid rgba(25, 30, 40, 1);
  color: white;
  background: rgba(25, 30, 40, 1);
}

.lrpage-form-input:focus,
.lrpage-form-button:focus {
  box-shadow: 0 0 0 3px rgba(25, 30, 40, 0.1);
}

.lrpage-container-footer {
  position: relative;
  display: flex;

  margin-top: 20px;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;

  padding: 0 40px;
}
