.home-content {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding-top: 48px;
}

.home-panel {
  display: flex;
  justify-content: center;
}

.home-login-card {
  display: flex;
  width: 100%;
  min-height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.home-login-copy {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.home-login-title {
  margin: 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.home-login-subtitle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.home-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  min-height: 38px;
  padding: 8px 18px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: var(--dodo-orange);
  border: 1px solid var(--dodo-orange);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-login-button:hover {
  background: var(--dodo-orange-hover);
  border-color: var(--dodo-orange-hover);
  box-shadow: 0 4px 10px rgb(0 0 0 / 8%);
}

.home-login-button:focus-visible {
  outline: 3px solid rgb(255 105 0 / 18%);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .home-content {
    padding-top: 28px;
  }

  .home-login-card {
    min-height: 0;
  }
}
