body {
    background-image: url("../img/sign_up/hotel.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.sp_main {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.spSec_left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 26px 70px;
    /* position: sticky;
    top:0px; */
}
.spSec_logo {
    width: 138px;
}
.spSec_right {
    width: 595px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.spSec_right::after {
    content: "";
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: var(--bg_black);
    opacity: 0.35928854;
}
.spSec_right .spForm_box {
    color: var(--c_white);
    position: relative;
    width: 468px;
    max-width: 100%;
    padding: 40px 55px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    border: 0.5px solid var(--c_border);
    border-top: none;
    border-bottom: none;
    -webkit-box-shadow: 0px 2px 4px rgba(206, 206, 206, 0.05);
    box-shadow: 0px 2px 4px rgba(206, 206, 206, 0.05);
    overflow: hidden;
}
.spForm_box::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(44, 54, 74, 0.8);
    -webkit-filter: blur(50px);
    filter: blur(50px);
}

/* terms and condition css */

.terms_condition {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    height: 100vh;
    padding: 2rem;
}

.terms_condition.spForm_box {
    position: relative;
    width: auto;
    max-width: 100%;
    padding: 40px 55px;
    display: -ms-grid;
    display: grid;
    place-items: center;
    border: 0.5px solid var(--c_border);
    border-top: none;
    border-bottom: none;
    -webkit-box-shadow: 0px 2px 4px rgba(206, 206, 206, 0.05);
    box-shadow: 0px 2px 4px rgba(206, 206, 206, 0.05);
    overflow: hidden;
}

.terms_condition .container {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 1rem;
    background-color: #fff;
    max-width: 768px;
    height: 95%;
    border-radius: 0.25rem;
    box-shadow: 0rem 1rem 2rem -0.25rem rgba(0, 0, 0, 0.25);
}

.container__heading {
    padding: 1rem 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.container__heading > h2 {
  font-size: 1.75rem;
  line-height: 1.75rem;
  margin: 0;
}

.container__content {
    flex-grow: 1;
    overflow-y: scroll;
    height: 77vh;
}

.container__nav {
  border-top: 1px solid #ccc;
  text-align: right;
  padding: 1.5rem 0 1rem;
}

.container__nav > small {
  color: #777;
  margin-right: 1rem;
}

.container__nav > .button {
  background-color: #444499;
  box-shadow: 0rem 0.5rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.25s, box-shadow 0.25s;
  display: inline-block;
}

.button:hover {
    box-shadow: 0rem 0rem 1rem -0.125rem rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.button:active small {
    color: #777;
    margin-right: 1rem;
}

/*  */

@media (max-width: 1399.98px) {
    .spSec_right {
        width: 530px;
    }
    .spForm_box {
        width: 418px;
        padding: 36px 50px;
    }
    .spSec_left {
        padding: 22px 62px;
    }
    .spSec_logo {
        width: 124px;
    }
    .terms_condition .container{
      height: 94%;
    }

    
}
@media (max-width: 991.98px) {
    .spSec_right {
        width: 450px;
    }

    .container__content {
      flex-grow: 1;
      overflow-y: scroll;
      height: 70vh;
  }
    
}
@media (max-width: 767.98px) {
    .sp_main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .spSec_left {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        text-align: center;
    }
    .spSec_right {
        width: 100%;
        padding: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .spSec_right::after {
        content: none;
    }
    .spForm_box {
        border: 0.5px solid var(--c_border);
        border-radius: 16px;
        padding: 32px 40px;
    }

    .terms_condition{
      height: 100%;
    }

    .container__nav > .button{
      display: block;
      width: 105px;
    }

    .container__nav > small{
      display: block;
    }

    .container__nav{
      text-align: left;
    }

   
}
@media (max-width: 575.98px) {
    .spForm_box {
        padding: 30px 24px;
    }

    .terms_condition.spForm_box {
      padding: 30px 15px;
  }
}
