@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&display=swap');

.tb-login #root {
  display: none !important;
}

.tb-login-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  z-index: 99999;
}

.tb-login-left {
  flex: 1;
  background-color: #0B233F;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.04) 39px, rgba(255,255,255,0.04) 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #ffffff;
}

.tb-login-left .tb-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E57621;
  margin-bottom: 16px;
}

.tb-login-left h1 {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #ffffff;
}

.tb-login-left .tb-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
}

.tb-login-right {
  flex: 0 0 480px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.tb-login-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
}

.tb-login-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  background: #0B233F;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-login-logo svg {
  width: 32px;
  height: 32px;
}

.tb-login-brand {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0B233F;
  margin: 0;
}

.tb-login-brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 24px;
}

.tb-login-card .tb-accent {
  width: 36px;
  height: 3px;
  background: #E57621;
  border-radius: 3px;
  margin: 0 auto 24px;
}

.tb-login-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0B233F;
  margin: 0 0 6px;
}

.tb-login-card .tb-login-desc {
  font-size: 14px;
  color: #888;
  margin: 0 0 28px;
}

.tb-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 24px;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  margin-bottom: 20px;
}

.tb-login-btn:hover {
  border-color: #0B233F;
  box-shadow: 0 2px 8px rgba(11,35,63,0.12);
}

.tb-login-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tb-login-footer {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .tb-login-overlay {
    flex-direction: column;
  }
  .tb-login-left {
    flex: 0 0 auto;
    padding: 40px 30px;
  }
  .tb-login-left h1 {
    font-size: 28px;
  }
  .tb-login-right {
    flex: 1;
  }
}
