* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .login-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;
  }  
  .login-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;
  }
  .login-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;
    font-weight: 500;
  }
  .txt-box h1 {
    font-size: 40px;
    font-weight: 500;
  }
  .txt-box h3 {
    font-size: 25px;
    font-weight: 500;
  }
  .login {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    max-width: 700px;
    border-radius: 0 50px 50px 0;
    background-color: var(--paper-dark);
  }
  .login-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 90px;
  }
  .login-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-weight: 400;
    font-size: 16px;
  }
  .login-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;
  }
  .login-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;
  }
  .login-inp-box {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    width: 100%;
    gap: 40px;
    margin: 0 auto;
  }

  .login-email {
    display: block;
    border: 1px solid white;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px;
    width: 100%;
    outline: none;
  }
  .login-email input {
    width: 100%;
  }
  .login-psw {
    width: 100%;
    border: 1px solid white;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px;
    outline: none;
  }
  .checkbox {
    display: flex;
    justify-content: space-between;
  }
  .login-check {
    display: flex;
    gap: 12px;
  }
  .login-check p {
    font-size: 14px;
  }
  .checkbox-forgot{
    cursor: pointer;
  }
  .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;
    }
    .login-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;
    }
    .login-title {
      display: flex;
      justify-content: space-around;
      margin-bottom: 50px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .login-title h1 {
      font-size: 30px;
    }
    .close-box p {
      font-size: 12px;
    }
    .login-inp-box {
      gap: 25px;
    }
    .login-logos {
      display: block;
      max-width: 550px;
      margin: 0 auto;
    }
    .login-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;
      }
      .login-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;
      }
    }
  }
  