/* ========================= */
/* PAGE STRUCTURE */
/* ========================= */


.white-overlay{
    background:linear-gradient(
        90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 40%,
        rgba(255,255,255,0.8) 60%,
        rgba(255,255,255,0.5) 80%,
        rgba(255,255,255,0.25) 100%
    );
    height:100vh;
}


/* ========================= */
/* MAIN LAYOUT */
/* ========================= */

.rtr-login-contatiner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:100%;
    margin:0 auto;
    /*padding:100px 80px 40px;*/
    gap:60px;
}


/* ========================= */
/* LEFT SECTION */
/* ========================= */

.left-section{
    flex:0 0 420px;
    display:flex;
    flex-direction:column;
}

/* spacing between logo and text */

.left-section > div{
    margin-bottom:24px;
}


/* ========================= */
/* RIGHT SECTION */
/* ========================= */

.collins-right{
    flex:1;
    display:flex;
    justify-content:flex-end;
    align-items:center;
        height:100vh;
        width:100%;
}


/* ========================= */
/* TYPOGRAPHY */
/* ========================= */

.splash-page-heading h1{
    font-family:"IBM Plex Sans", sans-serif;
    font-weight:400;
    font-size:39px;
    line-height:120%;
    letter-spacing:4.5px;
    text-transform:uppercase;
    color:#1E1E1E;
    margin:8px 0 16px;
}
.register-account{
  margin-top:10px !important;
}
.rtr-login-contatiner p{
    margin-bottom:28px;
    color:#666666;
    font-size:14px;
    line-height:140%;
}


/* ========================= */
/* LOGO */
/* ========================= */

.rtr-logo{
    max-width:330px;
}


/* ========================= */
/* BUTTONS */
/* ========================= */

.rtr-login-contatiner .rtr-btn{
    margin:14px 0;
}

.rtr-btn--ex-large{
    width:100%;
    max-width:380px;
    display:block;
}

.rtr-btn--red.rtr-btn--transparent{
    color:#d20532;
    background:transparent;
    border:0;
}

.rtr-btn.rtr-btn--white.rtr-btn--stroked{
    border:1px solid #BEBEBE;
    color:#000;
}

.rtr-btn.rtr-btn--white.rtr-btn--stroked:hover{
    color:#fff;
}




/* ========================= */
/* TABLET */
/* ========================= */

@media (max-width:1280px){

.rtr-login-contatiner{
    padding:60px 40px;
}

.rtr-btn--ex-large{
    max-width:100%;
}

.vs-cookie-banner > div{
    gap:8px;
}

}


/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:780px){

.rtr-login-contatiner{
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:40px 20px;
}

.left-section{
    flex:1 1 100%;
    align-items:center;
}

.collins-right{
    justify-content:center;
    width:100%;
    margin-top:40px;
}

.rtr-logo{
    margin-top:16px;
    width:100%;
}

.vs-cookie-banner > div{
    flex-direction:column;
}

.white-overlay{
    background:rgba(255,255,255,0.95);
}

}


/* ========================= */
/* SMALL MOBILE */
/* ========================= */

@media (max-width:480px){

.rtr-login-contatiner{
    padding:20px 10px;
}

}
.error {
    color: red;
    font-size: 12px;
}

.email-txtbox{
   height:26px;
   margin-bottom:10px;
}

.email-txtbox::placeholder {
    padding-left:10px;
}

/* confirm popup */
.cn-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

    justify-content: center;
    align-items: center;

    z-index: 9999;
    font-size:15.5px;
    margin:20px 0 10px
}

.cn-popup-box {
    background: #fff;
    width: 640px;
    height:501px;
    max-width: 90%;

    max-height: 80vh;
    overflow: visible;

    padding: 15px 0 10px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
}


.cn-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;

    font-size: 18px;
    cursor: pointer;
    border: none;
}

.cn-popup-actions {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.sign-in-register {
   max-width: 380px;
}
.cn-popup-close img {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent !important;
}
.popup-text {
    margin-bottom: 200px;
}
.cn-popup-close a {
    pointer-events: none;
    cursor: default;
    background: transparent !important;
}

.popup-text-content {
    padding-left: 20px;
    padding-right: 20px;
}

.popup-text-content .popup-heading {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.popup-text-content .popup-paragraph {
    margin-bottom: 24px;
}

.popup-text-content .popup-link-terms {
    color: #000;
    text-decoration: underline;
}

.popup-text-content .popup-link-privacy {
    color: #007bff;
    text-decoration: underline;
}
/* confirm popup  - end*/