/* Utilities */
/* .field-gap {
    margin-bottom: 20px;
} */

/* Utilities End */
:root {
    --bat-bg: #293361;
    --header-spacing: 40px;
    --container-size: 390px;
}
/**
* Prevent background scrolling when popup is open
*/
html.bat-existing-reg-popup-open {
    overflow: hidden;
}
/**temporary**/
/* section:not(.bat-existing-reg-alert),
header {
    display:none!important;
}
.quiz-page-wrapper{
    margin: 0!important;
} */
/**temporary end**/
.bat-existing-reg-alert {
    margin: 0;
    padding: 0;
    font-family: "Velo WWangle", sans-serif;
    scroll-behavior: smooth;
    background-attachment: fixed;
    min-height: 75vh;
    min-height: 75lvh;
    background-color:var(--bat-bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: calc(100% - 53px);
    display: none;
}
.bat-existing-reg-alert.existing-reg-popup-visible {
    display: block;
}

.bat-existing-reg-alert-header {
    padding-top: var(--header-spacing);
    /* margin-top: var(--header-spacing); */
}

main {
    margin-top: 84px;
}

.bat-existing-reg-alert .wrapper {
    --container-size: 768px;
    max-inline-size: var(--container-size);
    margin-inline: auto;
    padding-inline: 20px;
}

.bat-existing-reg-alert .title {
    margin-block: 20px 36px;
    font-size: 34px;
    color: #fff;
}
.bat-existing-reg-alert .description {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
}
.bat-existing-reg-alert .user-name {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    color: #fcfcfd;
    padding: 22px;
    border: none;
    border-radius: 12px;
}
.bat-existing-reg-alert .reg-confirm-form {
    display: flex;
    gap: 16px;
    flex-direction: column;
}
.bat-existing-reg-alert .reg-confirm-form button {
    width: 100%;
    border: none;
    border-radius: 12px;
    filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.16));
    background-color: #7eade5;
    padding-block: 18px;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}
.bat-existing-reg-alert footer {
    position: fixed;
}
/* footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    padding: 20px;
  }
  
  footer .bottom-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  footer .bottom-bar p {
    margin: 0;
    color: #000;
    font-size: 14px;
    text-align: center;
  }
  
  footer .floating-warning {
    position: absolute;
    left: 20px;
    top: -55px;
    display: flex;
    align-items: center;
    max-width: 200px;
  }
  
  footer .floating-warning img {
    max-width: 40px;
    max-height: 40px;
  }
  
  footer .floating-warning p {
    font-size: 12px;
    color: #EFEFEF;
    margin-left: 10px;
    width: 119px;
  } */
  
 

/**
 * Responsiveness for Desktop View
 */
@media only screen and (max-width: 768px) {
    .bat-existing-reg-alert .wrapper {
        --container-size: 390px;
    }
    /* :root {
        --container-size: 768px;
    }

    footer {
        padding-block: 20px;  
    }

    footer .bottom-bar p {
        font-size: 14px;
    }

    footer .floating-warning p {
        font-size: 12px;
    } */
}

@media only screen and (max-width: 500px) {
    /* footer {
        position: absolute;
       bottom: 0; 
    }
    
    footer .bottom-bar p {
  
        font-size: 10px;
        line-height: 13px;
        
      }
      footer .floating-warning img {
        max-width: 29px;
        max-height: 29px;
    }
    footer .floating-warning p{
        width: 50px;
        font-size: 7px;
        margin-left: 4px;
    }

    footer .floating-warning{

        left: 5px;
        top: -35px;
      
      } */
}