* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register-container{
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.background-color{
  display: flex;
  justify-content: space-between;
  background-color:#880E4F;
  width: 100%;
  position: absolute;
  height: 100vh;
}
.background-color img{
  width: 650px;
}
.register {
  background-color: var(--paper-dark);
}
.register-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 1300px;
  gap: 80px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.4);
  border-radius: 50px;
}
.register-text {
  background: transparent;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.saas-logo {
  text-align: center;
  margin-bottom: 40px;
}
.saas-logo-img {
  width: 100%;
}
.saas-logo img {
  max-width: 70px;
}
.saas-logo h4 {
  font-size: 18px;
}
.txt-box {
  max-width: 400px;
  text-align: center;
}
.txt-box h1 {
  font-size: 40px;
}
.txt-box h3 {
  font-size: 25px;
}
.register {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  max-width: 700px;
  border-radius: 0 50px 50px 0;
}
.register-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 90px;
}
.register-title h1 {
  font-size: 40px;
}
.close-box {
  display: flex;
  gap: 10px;
}
.close-box img {
  cursor: pointer;
  max-width: 18px;
}
.close-box a{
  text-decoration: none;
  color: var(--secondary-light);
}
.close-box p {
  font-size: 16px;
}
.register-logos {
  display: flex;
  justify-content: space-between;
  max-width: 550px;
  margin: 0 auto;
  gap: 15px;
}
.facebook-img {
  max-width: 170px;
}
.twitter-img {
  max-width: 170px;
}
.google-img {
  max-width: 170px;
}
.register-logos img {
  cursor: pointer;
  width: 100%;
  margin-bottom: 40px;
}
.with-mail {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.with-mail::before,
.with-mail::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid white;
  margin: 0 50px;
}
.register-inp-box {
  display: flex;
  flex-direction: column;
  max-width: 520px;
  width: 100%;
  gap: 40px;
  margin: 0 auto;
}
.rgsr-name {
  display: block;
  border: 1px solid white;
  border-radius: 5px;
  background-color: transparent;
  padding: 10px;
  width: 100%;
}

.rgsr-email {
  display: block;
  border: 1px solid white;
  border-radius: 5px;
  background-color: transparent;
  padding: 10px;
  width: 100%;
}
.rgsr-email input {
  width: 100%;
}
.rgsr-psw-box {
  display: flex;
  justify-content: space-between;
  max-width: 520px;
  gap: 50px;
}
.rgsr-psw {
  width: 100%;
  border: 1px solid white;
  border-radius: 5px;
  background-color: transparent;
  padding: 10px;
}
.checkbox {
  display: flex;
  justify-content: space-between;
}
.rgsr-check {
  display: flex;
  gap: 12px;
}
.rgsr-check p {
  font-size: 14px;
}
.checkbox input {
  max-width: 16px;
  text-align: center;
  cursor: pointer;
}
.checkbox button {
  cursor: pointer;
  border-style: none;
  padding: 10px 35px;
  font-size: 16px;
  border-radius: 20px;
}
@media (max-width: 806px){
  body{
    height:auto;
  }
  .background-color{
  }
  .register-box {
    display: flex;
    justify-content:center;
  }
}

@media (max-width: 500px) {
  .background-color{
    display: none;
  }
  .txt-box h1 {
    font-size: 30px;
  }
  .txt-box h3 {
    font-size: 20px;
  }
  .register-title {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .register-title h1 {
    font-size: 30px;
  }
  .close-box p {
    font-size: 12px;
  }
  .register-inp-box {
    gap: 25px;
  }
  .register-logos {
    display: block;
    max-width: 550px;
    margin: 0 auto;
  }
  .rgsr-psw-box {
    display: block;
  }
  .rgsr-psw {
    display: block;
    margin-bottom: 25px;
  }
  .checkbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 25px;
  }

  @media (max-width: 400px) {
    .background-color{
      display: none;
    }
    .txt-box h1 {
      font-size: 25px;
    }
    .txt-box h3 {
      font-size: 15px;
    }
    .register-title h1 {
      font-size: 25px;
    }
    .close-box p {
      font-size: 10px;
    }
    .facebook-img {
      max-width: 120px;
    }
    .twitter-img {
      max-width: 120px;
    }
    .google-img {
      max-width: 120px;
    }
  }
}
