.banner {
  padding-top: 152px;
  background: rgba(51, 47, 180, 0.831372549);
  color: #ffffff;
}

.landing {
    background: #6766D0;
    padding-bottom: 70px;
}

.banner h1 {
  font-weight: 400;
  font-size: 38px;
}

.landing h1 {
  font-size: 30px;
  line-height: 1.3;
  color: #DDDDDD;
} 

.home .banner{
  background-repeat: no-repeat;
  background-image: url('https://try.vpsserver.com/wp-content/uploads/2024/08/Image-50-1.png');
  background-position: 100px bottom;
}
.banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4vw;
}
.banner .left {
  width: 60%;
  max-width: 535px;
  flex: 1 0 40%;
}
.banner .left h3 {
  margin-bottom: 33px;
}

.landing .left h3 {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 400;
  margin-bottom: 24px;
}

.banner .left div {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  max-width: 455px;
}

.banner .left .custom-bullet ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.banner .left .custom-bullet ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.banner .left .custom-bullet ul li::before {
  content: '';
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  background-image: var(--bullet-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0.25em;
}

.landing .left ul li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  align-items: center;
}

.banner .right {
  width: 47.5%;
  flex: 1 0 45%;
}
.banner .right form {
  background: #ffffff;
  box-shadow: 0 0 2px 0 rgba(23, 26, 31, 0.0784313725);
  border-radius: 8px;
  padding: 17px 22px 35px;
  color: #1a237e;
  display: flex;
  flex-direction: column;
}

.landing .right form {
  padding: 17px 21px;
  gap: 30px;
}

.banner .right h3,
.banner .right h4 {
  text-align: center;
  color: #171A1F;
  line-height: 1.65;
  font-weight: 400;
}

.banner .right h3 {
  font-size: 30px;
}

.banner .right h4 {
  font-size: 25px;
  margin-bottom: 30px;
}

.banner .right p {
  margin-bottom: 20px;
  position: relative;
}

.landing .right p {
  margin-bottom: 0;
}

.banner .right .info p {
  margin-bottom: 0;
}

.banner .right .bottom-link {
  margin-block: 15px 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: #1A237E;
}

.banner .right .bottom-link a {
  color: inherit;
}

.banner .right p label {
  line-height: 1.7;
  color: #424856;
  font-weight: 700;
}

.landing .right p label {
  font-size: 14px;
  line-height: 1.55;
}

.banner .right p input {
  display: block;
  width: 100%;
  border: none;
  background: #F3F4F6;
  border-radius: 4px;
  color: #1a237e;
  font-size: 14px;
  line-height: 1.75;
  padding: 7px 12px;
}

.banner .right input.invalid{
  border: 1px solid red !important;
}

.banner .right input[type="checkbox"].invalid{
  outline-style: solid;
  outline-color: red;
}

.banner .right p input::-moz-placeholder {
  color: #686a70;
}
.banner .right p input:-ms-input-placeholder {
  color: #686a70;
}
.banner .right p input::placeholder {
  color: #686a70;
}

.landing .right p input::placeholder {
  color: #BDC1CA;
}

.banner .right p svg {
  position: absolute;
  right: 12px;
  bottom: 11px;
}
.banner .right .terms {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #171A1F;
  font-size:14px;
}
.banner .right .terms input {
  margin-right: 8px;
  margin-top: 6px;
}
.banner .right .terms a {
  color: #1a237e;
}
.banner .right .info {
  margin-bottom: 0;
  margin-top: 15px;
  text-align: left;
  font-size: 14px;
  color: #171A1F;
}

.landing .right .info,
.landing .right .bottom-link {
    line-height: 1.55;
    margin-top: 3px;
}

.banner .right .info a {
  color: #1a237e;
}
.banner .right .info.login a {
  margin-left: 8px;
}
.banner .right .btn {
  line-height: 1.8;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

.landing .right .btn {
  line-height: 1.3;
  font-weight: 400;
}

.banner .valid{
  color: #0f9551;
}

.banner .message_pass{
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  width: max-content;
  height: fit-content;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 5px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.banner .message_pass.active{
  opacity: 1;
  visibility: visible;
}

.banner .info.info-bottom-text {
  margin-top: 0;
}

@media screen and (max-width: 576px) {
  .banner .message_pass{
    right: unset;
    left: 0;
    top: -100px;
    transform: unset;
    z-index: 9;
  }

  .banner .right .bottom-link {
    margin-top: 22px;
  }

  .banner .right h3 {
    font-size: 22px;
  }

  .banner .right h4 {
    font-size: 18px;
  }

  .deploy .right {
    width: 100%;
    padding-left: 0;
  }

  .deploy .container {
    gap: 2vh;
  }
}