:root {
  --orange: #ff6a00;
  --black: #050505;
  --dark: #0c0c0c;
  --text: #f4f4f4;
  --muted: #9f9f9f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

#bgcontainer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255, 106, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.logo {
  color: var(--orange);
  font-size: 44px;
  margin-bottom: 12px;
}

h1 {
  margin: 0 0 6px;
  font-size: 28px;
  font-weight: 700;
}

p {
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.5;
}

.google-btn,
.logout-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.google-btn:hover,
.logout-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 106, 0, 0.16);
  border-color: rgba(255, 106, 0, 0.65);
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255, 106, 0, 0.35);
  margin-bottom: 18px;
}

.logout-form {
  position: absolute;
  top: 18px;
  right: 18px;
}

.icon-logout {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 106, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.icon-logout:hover {
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-1px);
}

.user-email {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 106, 0, 0.18);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 106, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.5);
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.04);
}
