.home {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(16, 16, 16);
  min-height: 100%;
  width: 100%;
}
.home .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.home .logo_container {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: center;
}
.home .logo_container > div {
  width: 48px; 
  height: 48px;
}
.home .bg img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.25);
}
.home .container {
  width: 100%;
  max-width: 370px;
}
.home .container.unset {
  max-width: unset;
}
.home .container h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: rgb(243, 245, 247);
}

.home .container .field {
  margin: 8px 0;
}
.home .container .conditions {
  margin-bottom: 34px;
}
.home .container label.agree {
  font-size: 15px;
  color: #fff;
}
.home .container label.agree a {
  color: #fff;
  text-decoration: underline;
}
.home .container input {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  line-height: 140%;
  border-radius: 12px;
  color: rgb(243, 245, 247);;
  border: 1px solid transparent;
  background-color: rgb(30, 30, 30);;
}
.home .container button {
  width: 100%;
  height: 56px;
  padding: 16px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  border-radius: 12px;
  color: rgb(16, 16, 16);
  background-color: rgb(255, 255, 255);;
}

.line-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 36px;
}
.line-container::before {
  margin: 0 10px 0 0px;
}
.line-container::after {
  margin: 0 0px 0 10px;
}
.line-container::before,
.line-container::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid rgba(243, 245, 247, 0.15);;
}
.line-container span {
  font-size: 15px;
  color: rgb(119, 119, 119);
}

.home .continue {
  display: flex;
  margin-top: 24px;
  flex-direction: row;
  align-items: center;
  border-radius: 16px;
  padding: 20px 12px 20px 20px;
  justify-content: space-between;
  border: 1px solid rgba(243, 245, 247, 0.15);
}
.home .continue img {
  width: 45px;
  height: 45px;
}
.home .continue span {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.home .continue i {
  font-size: 26px;
  color: rgb(119, 119, 119);
}

.footer {
  bottom: 24px;
  display: flex;
  align-items: center;
  position: absolute;
}
.footer ul {
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer ul a {
  font-size: 12px;
  font-weight: 400;
  color: rgb(119, 119, 119);
}
.footer ul a:hover {
  text-decoration: underline;
}

.home .go_step {
  gap: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}
.home .go_step a {
  cursor: pointer;
}
.home .go_step .text p {
  font-size: 14px;
  color: rgb(119, 119, 119);
}
.home .go_step .text h5 {
  color: #FFF;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 600;
}

.home .creating > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.home .creating > div.d-block {
  display: block;
}
.home .creating p {
  color: #FFF;
  text-align: center;
}
.home .creating i {
  color: #FFF;
}
.home .creating .calendly {
  width: 100%;
  margin-top: 40px;
}