.register-step {
  display: grid;
  grid-template-columns: 30% 70%;
  height: 100vh;
}
.container-left {
  padding: 100px 60px;
  background-color: #f4f6fa;
}
.container-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  user-select: none;
}
.register-title {
  font-size: 2rem;
  font-weight: bold;
}
.register-title-2 {
  font-size: 1.5rem;
}
.register-title-3 {
  padding-top: 50px;
  font-size: 1.5rem;
}
.step-title-underline {
  position: relative;
  line-height: 1.4;
}
.step-title-underline::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  height: 4px;
  width: 80px;
  background-color: #fa5130;
}
.login-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  max-width: 600px;
}
.login-form-title {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  /* margin-bottom: 40px; */
  color: #8691a3;
  font-size: 1.5rem;
}
.login-form-title::after {
  position: absolute;
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
  content: "";
  height: 3px;
  width: 50px;
  background: linear-gradient(to right, #ffffff, #e9e9e9);
}
.login-form-title::before {
  position: absolute;
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  content: "";
  height: 3px;
  width: 50px;
  background: linear-gradient(to right, #e9e9e9, #ffffff);
}
.form-ipt {
  width: 100%;
  padding: 15px 30px;
  margin-top: 20px;
  font-size: 0.8rem;
  outline: none;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
}
.form-ipt::placeholder {
  color: #999999;
}
.remember-pwd {
  display: flex;
  align-items: center;
  padding-top: 20px;
  font-size: 0.8rem;
}
.remember-pwd input {
  margin-right: 10px;
}
.register-btn {
  cursor: pointer;
  flex: 1;
  outline: none;
  border: none;
  color: #ffffff;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 70px;
  background-color: #fa5130;
}
.pre-step {
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #ffeae2;
}
.country {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 20px;
}
.country-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 0.8rem;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
  transition: all 0.3s;
}
.country-item-checked {
  position: relative;
  color: #fa5130;
  border-color: #fa5130;
}
.country-item-checked::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "✔";
  padding: 0 4px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 4px 0 0 0;
  background-color: #fa5130;
}
.country-page {
  margin-bottom: 20px;
}
.arrow {
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #ffeae2;
}
.arrow svg {
  fill: #fa5130;
}
.arrow:active {
  background-color: #fa5130;
}
.arrow:active svg {
  fill: #ffffff;
}
.channel {
  max-height: 350px;
  margin-bottom: 10px;
  overflow: hidden;
  overflow-y: auto;
}
.channel-item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 2px solid #c4c4c4;
  transition: all 0.3s;
}
.channel-item:last-child {
  margin-bottom: 0;
}
.channel-item .container-text {
  margin-top: 0;
}
.channel-item-checked {
  position: relative;
  border-color: #fa5130;
}
.channel-item-checked::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "✔";
  padding: 0 4px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 0 0 0 4px;
  background-color: #fa5130;
}
.select-template {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.template-item {
  cursor: pointer;
  position: relative;
  flex: 1;
  overflow: hidden;
  margin: 5px 7px;
  padding: 20px 20px 40px 20px;
  border-radius: 4px;
  border: 2px solid #c4c4c4;
  transition: all 0.3s;
}
.preview-btn {
  position: absolute;
  right: 10px;
  bottom: 5px;
  display: flex;
  align-items: center;
  color: #f1512e;
  font-size: 14px;
}
.template-item img {
  /* width: 180px; */
  /* height: 180px; */
  object-fit: cover;
  object-position: top;
}
.tags {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 4px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 0 0 0 4px;
  background-color: #c4c4c4;
  transition: all 0.3s;
}
.template-item-checked {
  position: relative;
  border-color: #fa5130;
}
.template-item-checked .tags {
  background-color: #fa5130 !important;
}
/* .template-item .selected {
  display: none;
} */
/* .template-item-checked .selected {
  display: block;
}
.template-item-checked .un-selected {
  display: none;
} */
.container-left-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.register-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  /* height: 380px; */
}
.imitation-ipt {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #c4c4c4;
  overflow: hidden;
}
.imitation-ipt input {
  border: none;
  outline: none;
  flex: 1;
}
.imitation-ipt input::placeholder {
  color: #999999;
}
.ipt-icon {
  width: 20px;
  height: 20px;
  margin-right: 20px;
  font-size: 14px;
}
.code-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #ffffff;
  background-color: #fa5130;
}
.agree {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
.agree input {
  margin-right: 10px;
}
.template-dialog {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
}
.close-icon {
  cursor: pointer;
  text-align: right;
}
.dialog-container {
  position: relative;
  width: 90vw;
  height: 95vh;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.dialog-content {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
}
.dialog-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-line-container {
  height: 60vh;
  /* max-width: 800px; */
  padding: 10px 20px;
  background-color: #fff;
}
.dialog-big-img {
  width: 70%;
  height: 100%;
  text-align: right;
  overflow: hidden;
  overflow-y: auto;
}
.dialog-img-container .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.dialog-img-container .right .small-img {
  cursor: pointer;
  margin-bottom: 20px;
  overflow: hidden;
  font-weight: bold;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
}
.dialog-img-container .right img {
  margin-bottom: 5px;
  height: calc(100vh / 6);
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}
.dialog-img-container img {
  width: 100%;
  max-width: 500px;
}
.tabs-item {
  cursor: pointer;
  padding: 5px 0;
  margin-right: 20px;
  border-bottom: 3px solid transparent;
}
.selected-tabs {
  color: #fa5130;
  border-color: #fa5130;
}
.quote-content {
  padding: 10px 10px 10px 0;
  margin-right: 10px;
}
.line-item {
  width: 49%;
  margin-bottom: 10px;
  background: #f2f2f2;
  padding: 10px;
  border-radius: 5px;
  line-height: 1.3rem;
}
.line-country-item {
  cursor: pointer;
  padding: 3px 12px;
  margin: 0 10px 10px 0;
  font-size: 0.85rem;
  border-radius: 4px;
  border: 2px solid #eceff7;
  transition: all 0.3s;
}
.line-country-item-checked {
  border-color: #fa5130;
}
@media (max-width: 1024px) {
  .register-step {
    grid-template-columns: 40% 60%;
  }
  .container-left {
    padding: 50px 60px;
  }
  .register-title {
    font-size: 2rem;
  }
  .register-title-2 {
    font-size: 1.2rem;
  }
  .register-title-3 {
    padding-top: 20px;
    font-size: 1.2rem;
  }
  .form-ipt {
    padding: 10px 20px;
  }
  .register-btn {
    margin-top: 20px;
    padding: 10px;
  }
  .pre-step {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .register-step {
    grid-template-columns: 1fr;
  }
  .container-left {
    padding: 30px;
  }
  .register-title {
    font-size: 1.5rem;
  }
  .login-form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .login-container {
    width: 100%;
  }
  .register-form-container {
    padding: 20px 0;
    height: auto;
  }
  .country-item {
    padding: 10px 5px;
  }
  .line-item {
    width: 100%;
  }
  .template-item {
    width: 48%;
    margin: 5px 0;
    flex: initial;
  }
}
