/* ===== PitchPath • Signout Page ===== */

/* ===== Signout page wrapper & background ===== */
.signout-wrap{
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Same background image as home page */
.signout-wrap::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url('/assets/home_bg.jpg') center/cover no-repeat fixed;
  filter: saturate(.98) contrast(1.03) brightness(.78);
  z-index: -1;
  pointer-events: none;
}

/* ===== Signout container ===== */
.signout-container{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
}

/* ===== Signout card ===== */
.signout-card{
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(2, 12, 27, .14);
  padding: 64px 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* ===== Content ===== */
.signout-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.signout-title{
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
}

.signout-subtitle{
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* ===== Loading spinner ===== */
#signout-loading{
  margin-top: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 480px){
  .signout-card{
    padding: 48px 28px;
  }
  
  .signout-title{
    font-size: 24px;
  }
  
  .signout-subtitle{
    font-size: 14px;
  }
}
