    .password_wrapper_content {
      /* transform: scale(0); */
      transition: transform 3s ease-in-out;
    }
  
    .password_wrapper_content.active {
      /* transform: scale(1); */
    }
    .error-message_new{
      color: red;
      margin-top: 10px;
      text-align: center;
    }
    .transition_div {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #ffffff;
      width: 100%;
      height: 100%;
      z-index: 9;
      clip-path: circle(0% at 50% 50%);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
      transition: clip-path 3s ease
    }
  
    .transition_div.clip_path {
      clip-path: circle(100% at 50% 50%);
    }

    .password-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      background-color: black;
      color: white;
      overflow: hidden;
    }
  
    .password-wrapper {
      position: absolute;
      top: 0%;
      left: 0%;
      text-align: center;
      width: 100%;
      height: 100%;
      background: #00000080;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 20px;
    }
  
    input#password-input::placeholder {
      font-size: 14px;
    }
  
    .number-key, .backspace-key {
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
    }
  
    .password-submit {
      position: relative !important;
      margin-top: 25px;
      display: flex;
      justify-content: center;
    }
  
    .password_wrapper_content {
      /* background: linear-gradient(145deg, #2d2d2d, #3a3a3a); */
      border-radius: 12px;
      padding: 30px;
      max-width: 430px;
      width: 100%;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 50px rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-transform: initial; 
    }
  
    .password-display {
      margin-bottom: 20px;
      text-align: center;
    }
  
    #password-input {
      background-color: #1e1e1e;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 500px;
      color: #fff;
      font-size: 18px;
      padding: 10px 15px;
      width: 100%;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.2);
      outline: none;
      background: linear-gradient(145deg, #1e1e1e, #333);
      transition: all 0.3s ease;
    }
  
    #password-input:focus {
      border-color: rgba(255, 255, 255, 0.3);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }
  
    #password-input::placeholder {
      color: #888;
    }
  
    .number-keypad {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 5px;
      margin-bottom: 20px;
    }
  
    .number-key, .clear-key, .backspace-key {
      background-color: #333;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: #fff;
      font-size: 20px;
      padding: 15px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
      background: linear-gradient(145deg, #3a3a3a, #1e1e1e);
      position: relative;
      overflow: hidden;
    }
  
    .number-key:hover, .clear-key:hover, .backspace-key:hover {
      background-color: #444;
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }
  
    .number-key:active, .clear-key:active, .backspace-key:active {
      transform: scale(0.95);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
  
    .clear-key {
      background-color: #e74c3c;
    }
  
    .clear-key:hover {
      background-color: #c0392b;
    }
  
    .backspace-key {
      background-color: #f39c12;
    }
  
    .backspace-key:hover {
      background-color: #e67e22;
    }
  
    #submit-password {
      background-color: #3498db;
      border: none;
      border-radius: 500px;
      color: #fff;
      font-size: 18px;
      padding: 12px 20px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      background: linear-gradient(145deg, #3498db, #2980b9);
    }
  
    #submit-password:hover {
      background-color: #2980b9;
      transform: scale(1.05);
    }
  
    #submit-password:active {
      background-color: #2980b9;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.5);
    }
  
    /* Glossy reflections for inner elements */
    .password_wrapper_content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      pointer-events: none;
      border-radius: 12px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
      opacity: 0.2;
    }
  
    /* Add a subtle metallic texture to the buttons */
    .number-key::after, .clear-key::after, .backspace-key::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
      border-radius: 12px;
      opacity: 0.5;
      pointer-events: none;
    }
  
    #loader {
      display: none;
      border: 3px solid #f3f3f3;
      border-top: 3px solid #3498db;
      border-radius: 50%;
      width: 100%;
      height: 20px;
      animation: spin 2s linear infinite;
      position: absolute;
      max-width: 20px;
      top: 30%;
      /* left: 50%; */
      transform: translate(-50%, -50%);
    }
  
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
  
    .submit_result {
      margin-bottom: 15px;
      font-size: 17px;
      text-transform: uppercase;
      display: none;
      transition: all 0.3s ease;
      font-weight: 600;
      letter-spacing: 1px;
      color: red;
      position: relative;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 50px rgba(255, 255, 255, 0.1);
      padding: 0 20px;
      border-radius: 500px;
    }
  
    .show.submit_result:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
      opacity: 0.2;
      border-radius: 500px;
    }
  
    .submit_result.show {
      display: block;
    }
  
    body.password_page_body .shopify-section-group-header-group.shopify-section--header,body.password_page_body .shopify-section-group-footer-group.shopify-section--footer {
      display: none;
    }
  
    video#vaultVid {
      filter: blur(3px);
      object-fit: cover;
      width: 100vw;
      height: 100%;
      position: absolute;
      opacity: .85;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  
    .logo_wrapper {
      position: absolute;
      top: 70px;
      left: 51%;
      transform: translateX(-50%);
    }

    .safe-logo-wrapper{
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .safe-logo-wrapper img{
      width: 300px !important;
    }
  
    .password-display label {
      color: white;
      width: 100%;
      display: block;
      margin: 0 0 5px 5px;
      text-transform: capitalize;
    }
    @media screen and (max-width: 500px) {
      .number-key, .backspace-key {
        max-width: 80px;
        height: 80px;
        width: 100%;
      }
      .password_wrapper_content {
        padding-inline: 11px;
      }
    }
  
    @media screen and (max-width: 750px) {
      .logo_wrapper {
        top: 6px;
        position: unset;
        transform: unset;
      }
      .submit_result {
        margin-bottom: 0;
      }
      .password-wrapper {
        justify-content: start;
        gap: 20px;
      }

      .safe-logo-wrapper img{
      width: 250px !important;
    }
    }

    .section-spacing.section_padding {
      padding: 0;
    }

    .logo_wrapper img {
      width: 100%;
      height: 100%;
      max-width: 150px;
    }
    .heading {
      margin-bottom: 20px;     
    }
    @media screen and (max-width: 650px) {
      .heading {
        margin-bottom: 0;
      }
    }
    div#black-access-wrapper video {
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      max-width: 100%;
      z-index: 9;
      object-fit: cover;
    }