/*
Theme Name: Nabismed - Headless CMS
Theme URI: https://nabismed.com.br
Author: Herick Correa
Author URI: https://herickcorrea.com.br
Description: Minimal WordPress theme for headless CMS usage with React/Next.js frontend.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nabismed-headless
*/

:root {
  --fm-bg: #0a2f2a;
  --fm-accent: #005950;
  --fm-accent-2: #9ec0bc;
  --fm-light: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, #123c35, var(--fm-bg) 52%);
  color: var(--fm-light);
}

.fm-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.fm-card {
  width: min(560px, 100%);
  background: rgba(10, 47, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.fm-logo {
  max-width: min(220px, 100%);
  max-height: 64px;
  margin: 0 auto 20px;
  display: block;
}

.fm-code {
  margin: 0 0 6px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fm-accent-2);
  letter-spacing: -0.02em;
}

.fm-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.fm-text {
  margin: 0;
  opacity: 0.9;
}

.fm-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--fm-accent), var(--fm-accent-2));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
