/* ================================================================
   WYSPER AUTH PAGES - Premium Split Layout Design
   ================================================================ */

/* ==================== AUTH PAGE BASE ==================== */
.auth-page {
  height: 100vh;
  background: var(--bg-dark);
  font-family: var(--font-main);
  overflow: hidden;
}

.auth-page.loaded .auth-form-side {
  opacity: 1;
  transform: translateX(0);
}

.auth-page.loaded .auth-brand-side {
  opacity: 1;
}

/* ==================== AUTH LAYOUT - SPLIT ==================== */
.auth-layout {
  display: flex;
  height: 100vh;
}

/* ==================== LEFT SIDE - FORM ==================== */
.auth-form-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

@media (min-width: 1024px) {
  .auth-form-side {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 60px 80px;
  }
}

@media (min-width: 1280px) {
  .auth-form-side {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 60px 100px;
  }
}

.auth-form-container {
  width: 100%;
  max-width: 420px;
}

/* ==================== MOBILE LOGO ==================== */
.auth-mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
  text-decoration: none;
}

.auth-mobile-logo img {
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .auth-mobile-logo {
    display: none;
  }
}

/* ==================== BACK LINK ==================== */
.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

.auth-back-link:hover {
  color: var(--text-primary);
}

.auth-back-link svg {
  transition: transform 0.3s ease;
}

.auth-back-link:hover svg {
  transform: translateX(-3px);
}

/* ==================== AUTH HEADER ==================== */
.auth-header {
  margin-bottom: 36px;
}

.auth-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .auth-header h1 {
    font-size: 32px;
  }
}

.auth-header p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== FORM STYLES ==================== */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.forgot-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary);
}

/* ==================== INPUT WRAPPER ==================== */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
  color: var(--primary-light);
}

.input-wrapper input {
  width: 100%;
  height: 52px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-wrapper input::placeholder {
  color: var(--text-muted);
}

.input-wrapper input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 102, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* ==================== TOGGLE PASSWORD ==================== */
.toggle-password {
  position: absolute;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: var(--text-primary);
}

.toggle-password .eye-closed {
  display: none;
}

/* ==================== CHECKBOX ==================== */
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checkbox-custom svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
  color: var(--text-primary);
}

.checkbox-wrapper input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-wrapper input:checked + .checkbox-custom svg {
  opacity: 1;
  transform: scale(1);
}

.checkbox-wrapper:hover .checkbox-custom {
  border-color: rgba(255, 255, 255, 0.25);
}

.checkbox-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==================== SUBMIT BUTTON ==================== */
.btn-auth-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  margin-top: 8px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-auth-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-auth-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.btn-auth-submit:hover::before {
  opacity: 1;
}

.btn-auth-submit:active {
  transform: translateY(0);
}

.btn-auth-submit .btn-text,
.btn-auth-submit .btn-arrow {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-auth-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-auth-submit .btn-loader {
  position: absolute;
  display: none;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-auth-submit.loading {
  pointer-events: none;
}

.btn-auth-submit.loading .btn-text,
.btn-auth-submit.loading .btn-arrow {
  opacity: 0;
}

.btn-auth-submit.loading .btn-loader {
  display: block;
}

.btn-auth-submit.success {
  background: #22c55e;
}

.btn-auth-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ==================== DIVIDER ==================== */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== SOCIAL BUTTON ==================== */
.btn-social {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-social:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-social:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coming-soon-badge {
  position: absolute;
  right: 12px;
  padding: 3px 8px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
}

/* ==================== AUTH SWITCH ==================== */
.auth-switch {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}

.auth-switch a {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.auth-switch a:hover {
  color: var(--text-primary);
}

/* ==================== RIGHT SIDE - BRANDING ==================== */
.auth-brand-side {
  display: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}

@media (min-width: 1024px) {
  .auth-brand-side {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
  }
}

/* ==================== BRAND BACKGROUND ==================== */
.brand-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #030508 0%,
    #061020 20%,
    #0a1a35 50%,
    #0d2a55 80%,
    #103a70 100%
  );
}

.brand-grid {
  display: none;
}

.brand-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: brandOrbFadeIn 1.5s ease-out forwards;
}

.brand-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.3) 0%,
    transparent 70%
  );
  animation-delay: 0.3s;
}

.brand-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.2) 0%,
    transparent 70%
  );
  animation-delay: 0.5s;
}

.brand-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(
    circle,
    rgba(123, 97, 255, 0.15) 0%,
    transparent 70%
  );
  animation-delay: 0.7s;
}

@keyframes brandOrbFadeIn {
  to {
    opacity: 1;
  }
}

/* ==================== BRAND CONTENT ==================== */
.brand-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
}

/* ==================== BRAND LOGO CONTAINER ==================== */
.brand-logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.brand-logo {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: scale(0.5);
  animation: logoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-logo-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.4) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: 1;
  opacity: 0;
  animation: glowPulse 3s ease-in-out infinite 1s;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.brand-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.2);
  opacity: 0;
}

.brand-logo-ring-1 {
  width: 180px;
  height: 180px;
  animation: ringExpand 2s ease-out 0.6s forwards;
}

.brand-logo-ring-2 {
  width: 200px;
  height: 200px;
  animation: ringExpand 2s ease-out 0.8s forwards;
}

.brand-logo-ring-3 {
  width: 220px;
  height: 220px;
  animation: ringExpand 2s ease-out 1s forwards;
}

@keyframes ringExpand {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

/* ==================== BRAND TEXT ==================== */
.brand-text {
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 0.6s ease-out 0.8s forwards;
}

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ==================== PARTICLES ==================== */
.brand-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 102, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation: particleFloat 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.particle-2 {
  top: 60%;
  left: 15%;
  animation: particleFloat 8s cubic-bezier(0.4, 0, 0.2, 1) 1.4s infinite;
}

.particle-3 {
  top: 30%;
  right: 25%;
  animation: particleFloat 6.5s cubic-bezier(0.4, 0, 0.2, 1) 2.8s infinite;
}

.particle-4 {
  top: 70%;
  right: 20%;
  animation: particleFloat 7.5s cubic-bezier(0.4, 0, 0.2, 1) 4.2s infinite;
}

.particle-5 {
  top: 45%;
  left: 40%;
  animation: particleFloat 8.5s cubic-bezier(0.4, 0, 0.2, 1) 5.6s infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  6% {
    opacity: 1;
    transform: translateY(-6px) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50px) scale(0.95);
  }
  94% {
    opacity: 0.3;
    transform: translateY(-94px) scale(0.7);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

/* ==================== VERIFICATION MODAL ==================== */
.verification-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.verification-modal.active {
  opacity: 1;
  visibility: visible;
}

.verification-card {
  width: 100%;
  max-width: 420px;
  padding: 48px 40px;
  background: rgba(12, 12, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.verification-modal.active .verification-card {
  transform: scale(1) translateY(0);
}

.verification-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
  color: var(--primary-light);
}

.verification-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.verification-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.verification-card > p strong {
  color: var(--text-primary);
}

.verification-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.btn-resend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0 24px;
  margin-bottom: 20px;
  background: var(--primary);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-resend:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.btn-resend:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-resend.loading {
  background: rgba(255, 255, 255, 0.1);
}

.verification-back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.verification-back:hover {
  color: var(--text-primary);
}

/* ==================== CHECKBOX LINK STYLES ==================== */
.checkbox-text a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.checkbox-text a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ==================== AUTH STATES ==================== */
.auth-state {
  animation: stateReveal 0.4s ease-out forwards;
}

@keyframes stateReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-spinner {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  color: var(--primary-light);
}

.state-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.state-icon-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.state-icon-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.state-message {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.state-message strong {
  color: var(--text-primary);
}

.state-hint {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}

/* Secondary style button */
.btn-secondary-style {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary-style:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 1023px) {
  .auth-form-side {
    min-height: 100vh;
    background: linear-gradient(180deg, #030508 0%, #061020 50%, #0a1a35 100%);
  }
}

@media (max-height: 700px) and (min-width: 1024px) {
  .auth-form-container {
    transform: scale(0.9);
    transform-origin: center center;
  }

  .brand-logo-container {
    width: 160px;
    height: 160px;
  }

  .brand-logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
  }

  .brand-logo-glow {
    width: 140px;
    height: 140px;
  }

  .brand-logo-ring-1 {
    width: 140px;
    height: 140px;
  }

  .brand-logo-ring-2 {
    width: 160px;
    height: 160px;
  }

  .brand-logo-ring-3 {
    width: 180px;
    height: 180px;
  }

  .brand-title {
    font-size: 36px;
  }
}

/* ================================================================
   WYSPER AUTH PAGES - Additional Styles for Verify & Join
   Add these styles to your existing css/auth.css file
   ================================================================ */

/* ==================== VERIFICATION SPINNER ==================== */
.verification-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}

.verification-spinner svg {
  filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
}

/* ==================== AUTH STATE ==================== */
.auth-state {
  animation: stateReveal 0.5s ease-out forwards;
}

@keyframes stateReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== STATE ICONS ==================== */
.state-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: iconPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes iconPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.state-icon-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
}

.state-icon-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.15);
}

/* ==================== STATE HINT ==================== */
.state-hint {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* ==================== VERIFICATION ACTIONS ==================== */
.verification-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* ==================== INVITATION CARD ==================== */
.invitation-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(0, 102, 255, 0.05);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 14px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.invitation-card:hover {
  background: rgba(0, 102, 255, 0.08);
  border-color: rgba(0, 102, 255, 0.25);
}

.invitation-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  color: var(--primary-light);
}

.invitation-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.invitation-card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.invitation-card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==================== ROLE BADGE ==================== */
.role-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.role-badge strong {
  color: var(--primary-light);
  font-weight: 600;
}

.role-badge span:last-child {
  color: var(--text-primary);
}

/* ==================== SUCCESS BUTTON STATE ==================== */
.btn-auth-submit.success {
  background: #22c55e;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
}

.btn-auth-submit.success::before {
  background: linear-gradient(135deg, #34d399, #22c55e);
}

/* ==================== BTN SOCIAL AS LINK ==================== */
a.btn-social {
  display: flex;
  width: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 480px) {
  .invitation-card {
    padding: 14px 16px;
    gap: 12px;
  }

  .invitation-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .invitation-card-value {
    font-size: 16px;
  }

  .state-icon {
    width: 80px;
    height: 80px;
  }

  .state-icon svg {
    width: 40px;
    height: 40px;
  }
}
