/* 1. THE VARIABLES (Your Master Theme) */
:root {
  --background: #ffffff;
  --foreground: #1f2937;

  /* Logo Colors: French Blue and Red */
  --primary: #002654;
  --primary-foreground: #ffffff;

  --destructive: #ed2939;
  --destructive-foreground: #ffffff;

  --muted: #4b5563;
  --muted-foreground: #64748b;

  --border: #e2e8f0;

  --radius: 10px; /* Softer, friendlier border radius */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  text-decoration: none;
}

body {
  font-family: "Inter", "Noto Sans Georgian", sans-serif;
  background-color: #f3f4f6;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 20px 20px;
  color: var(--foreground);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  margin: 0;
  padding: 20px;
}

section {
  background: var(--background);
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.05),
    0 4px 6px rgba(0, 0, 0, 0.02);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease-out;
  .logo {
    padding: 0 1rem 1.5rem;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
  }
  p {
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--muted);
    margin: 0;
  }
}

.text-group {
  margin-bottom: 30px;
}

/* Custom grid for side-by-side social buttons */
button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 4rem;
  .current {
    color: var(--muted-foreground);
  }
}

.icon-component {
  display: flex;
  justify-content: center;
  align-items: center;
}
