/* Block: leezy */
.leezy {
  /* Styles for the leezy block */
  position: absolute;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding: 0;
  height: 95vh;
  top: 0;
  display: flex;
  flex-direction: row;
  background: #ffffff;
}

/* Element: logo */
.leezy__logo {
  /* Styles for the logo inside the leezy block */
  background: url("../images/logo.png") no-repeat;
  height: 54px;
  width: 200px;
  position: absolute;
  top: 30px;
  left: 60px;
}

/* Element: actions */
.leezy__actions {
  /* Styles for the action container inside the leezy block */
  flex: 1;
  margin-top: 100px;
  padding: 60px 90px;
  padding-bottom: 140px;
  background: white;
}

/* Element: title */
.leezy__title {
  /* Styles for the title inside the actions container */
  font-size: 24.5px;
  line-height: 30px;
  color: #000000;
  display: flex;
}

/* Element: subtitle */
.leezy__subtitle {
  /* Styles for the subtitle inside the actions container */
  font-size: 15px;
  color: #262a3e;
  margin-top: 16px;
  margin-bottom: 40px;
  letter-spacing: 0.15px;
  opacity: 0.75;
}

/* Element: button */
.leezy__button {
  /* Base styles for the button */
  font-weight: 500;
  text-align: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
  border-radius: 9999px;
  gap: 1px;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

/* Modifier: blue button */
.leezy__button--blue {
  /* Specific styles for the blue variant of the button */
  background-color: rgb(79 70 229);
  color: white;
}

/* Modifier: hover button */
.leezy__button:hover {
  /* Styles for the button when hovered */
  background-color: rgb(55 48 163);
  color: white;
  cursor: pointer;
}

/* Element: side */
.leezy__side {
  /* Styles for the side container inside the leezy block */
  width: 0px;
  height: 95vh;
  right: 0;
  @media screen and (min-width: 1200px) {
    width: 600px;
  }
}

/* Element: form */
.leezy__form {
  /* Styles for the form inside the side container */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12px;
}

.leezy__form form {
  /* Styles for the form inside the side container */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leezy__form {
  /* Styles for the label inside the form */
  font-size: 15px;
  color: #262a3e;
  margin-bottom: 8px;
  gap: 0.5rem;
}

/* Element: side illustration */
.leezy__side-illustration {
  /* Styles for the illustration inside the side container */
  background: url("../images/join_right_sidebar.png") no-repeat;
  background-size: fit;
  background-position: bottom left;
  height: 100%;
  width: 100%;
  display: none;
  @media screen and (min-width: 1200px) {
    display: block;
  }
}

.leezy__side-illustration__wp {
  /* Styles for the illustration inside the side container */
  background: url("../images/wp_right_sidebar.png") no-repeat;
  background-size: fit;
  background-position: bottom left;
  height: 100%;
  width: 100%;
  display: none;
  @media screen and (min-width: 1200px) {
    display: block;
  }
}
