.log-out-page {
    background-color: #f7f9fc;
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
   
  /* background image */
  .log-out-page .gev-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* White main card */
.log-out-page .rectangle {
    height: 365px;
    background-color: #ffffff;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 558px;
    max-width: calc(100% - 40px);
    box-shadow: 2px 3px rgba(0, 0, 0, 0.1);
  }
   
  /* Blue top header bar */
  .log-out-page .div {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    background-color: var(--blue-alert-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 150px));
    width: 558px;
    max-width: calc(100% - 40px);
    border-radius: 4px 4px 0 0;
    gap: 10px;
  }

  /* Top small image (logo/icon) */
.log-out-page .div .image {
  width: 40px;
  height: 39px;
  }
  .log-out-page .div h1 {
    font-size: 32px;
    margin: 0;
    line-height: 39px;
    color: #ffffff;
    }
   
  /* Lock icon */
  .log-out-page .lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 77px));
    width: 24px;
    height: 24px;
    display: flex;
    z-index: 1;
  }
 
  /* Lock SVG image */
.log-out-page .img {
    margin-left: 6.25%;
    margin-right: 6.25%;
    width: 21px;
    flex: 1;
    
  }
   
  /* "You're signed out" text */
  .log-out-page .text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 32px));
    font-family: "GE Inspira Sans-Bold", Helvetica;
    font-weight: 700;
    color: var(--black);
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
  }

  /* Description text */
.log-out-page .operation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "GE Inspira Sans-Regular", Helvetica;
    font-weight: 400;
    color: var(--gray-darkest);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    z-index: 1;
    text-align: center;
    padding: 20px;
  }

  /* Close this window link */
.log-out-page .operation-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 111px));
    font-family: "GE Inspira Sans-Regular", Helvetica;
    font-weight: 400;
    color: var(--blue-alert-blue);
    font-size: 14px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    text-decoration: underline;
    transition: opacity 0.25s;
  }
   
  .log-out-page .operation-2:hover {
    opacity: 0.8;
  }

  /* Active state for "Close this window" */
.log-out-page .operation-2:active {
    opacity: 0.6;
  }
   
  /* Primary button (Return to login) */
  .log-out-page .primary-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 70px));
    width: 135px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-alert-blue);
    border-radius: 4px;
    border: 1px solid var(--blue-dark);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    z-index: 1;
    padding: 0;
  }
   
   
  /* Text inside primary button */
  .log-out-page .text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 2px;
    width: 99px;
    font-family: "Noto Sans", Helvetica;
    font-weight: 400;
    color: var(--white);
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    white-space: nowrap;
  }
   
  /* Mobile Responsiveness */
@media (max-width: 640px) {
 
    .log-out-page {
      min-height: 100vh;
      padding: 20px;
    }
   
    .log-out-page .rectangle {
      width: calc(100% - 40px);
      max-width: 400px;
      height: auto;
      min-height: 320px;
    }
   
    .log-out-page .div {
      width: calc(100% - 40px);
      max-width: 400px;
      height: 60px;
      transform: translate(-50%, calc(-50% - 130px));
    }

    /* .log-out-page .image {
        width: 40px;
        height: 39px;
        transform: translate(-50%, calc(-50% - 120px));
      } */
     
      .log-out-page .lock {
        transform: translate(-50%, calc(-50% - 65px));
      }
     
      .log-out-page .text-wrapper {
        font-size: 20px;
        transform: translate(-50%, calc(-50% - 25px));
        max-width: calc(100% - 80px);
      }
     
      .log-out-page .operation {
        font-size: 14px;
        max-width: calc(100% - 80px);
        white-space: normal;
        line-height: 1.4;
        top: 51%;
      }

      .log-out-page .primary-button {
        width: 140px;
        height: 44px;
        transform: translate(-50%, calc(-50% + 35px));
      }
       
      /* Active state */
      .log-out-page .primary-button:active {
        transform: translate(-50%, calc(-50% + 35px)) scale(0.98);
      }
       
      /* Text inside button */
      .log-out-page .text {
        height: 44px;
        line-height: 44px;
      }
       
      /* Close link position on mobile */
      .log-out-page .operation-2 {
        transform: translate(-50%, calc(-50% + 95px));
        padding: 12px 16px;
      }
   
  }
  @media (max-width: 400px) {
 
    .log-out-page .text-wrapper {
      font-size: 18px;
    }
   
    .log-out-page .operation {
      font-size: 13px;
    }
}