* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    background: radial-gradient(ellipse at center, #1e002f 0%, #0d001a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: transparent url("https://raw.githubusercontent.com/VincentGarreau/particles.js/master/demo/media/star.png") repeat;
    animation: moveStars 80s linear infinite;
    opacity: 0.08;
    z-index: 0;
  }
  
  @keyframes moveStars {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(-100px, -200px);
    }
  }
  
  #stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  
  .falling-star {
    position: absolute;
    top: -20px;
    width: 2px;
    height: 30px;
    background: white;
    opacity: 0.3;
    animation: star-fall-down linear forwards;
    transform: rotate(45deg);
  }
  
  @keyframes star-fall-down {
    to {
      transform: translateY(120vh) rotate(45deg);
      opacity: 0;
    }
  }
  
  .preloader {
    position: fixed;
    z-index: 9999;
    background: #0d001a;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOut 1s ease-out 1s forwards;
  }
  
  .preloader::before {
    content: "";
    width: 40px;
    height: 40px;
    border: 5px solid #a169f7;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes fadeOut {
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  
  header {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #333;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #a169f7;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links li a {
    color: #eee;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .nav-links li a:hover {
    color: #a169f7;
  }
  
  .nav-buttons .btn {
    padding: 8px 18px;
    margin-left: 10px;
    border-radius: 8px;
    border: none;
    background: #444;
    color: white;
    transition: 0.2s;
    font-size: 14px;
  }
  
  .nav-buttons .btn-discord {
    background: #5865F2;
  }
  
  .nav-buttons .btn:hover {
    opacity: 0.85;
  }
  
  .hero {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100vh - 100px);
    padding: 20px;
  }
  
  .hero-content {
    max-width: 700px;
  }
  
  .hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .hero-content .highlight {
    color: #a169f7;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
  }
  
  .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .hero-buttons .btn {
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #a169f7;
    color: white;
    font-weight: bold;
    transition: 0.2s;
  }
  
  .hero-buttons .btn-discord {
    background-color: #5865F2;
  }
  
  .hero-buttons .btn:hover {
    opacity: 0.9;
  }
  
  .gradient-text {
    background: linear-gradient(90deg, #a169f7, #2ac7c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .account-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    color: #eee;
  }
  
  .account-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 32px;
  }
  
  .table-wrapper {
    overflow-x: auto;
  }
  
  .tickets-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .tickets-table th,
  .tickets-table td {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    color: #fff;
  }
  
  .tickets-table thead {
    background: rgba(255,255,255,0.1);
  }
  
  .tickets-table tr:nth-child(even) {
    background: rgba(255,255,255,0.05);
  }
  
  .status.open {
    color: #2ac7c7;
    font-weight: bold;
  }
  
  .status.closed {
    color: #a169f7;
    font-weight: bold;
  }
  
  .no-tickets {
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin-top: 2rem;
    font-size: 16px;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    overflow-y: auto;
  }
  .modal-content {
    background: #1a001f;
    margin: 3% auto;
    padding: 1rem;
    border-radius: 8px;
    width: 90%; max-width: 800px;
  }
  .modal-close {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    color: #aaa;
  }
  .discord-message {
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
    padding: 0.5rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
  }
  .discord-message img {
    width: 40px; height: 40px; border-radius: 50%;
  }
  .discord-message .author {
    font-weight: bold;
  }
  .discord-message .timestamp {
    font-size: 0.8rem;
    color: #888;
    margin-left: auto;
  }
  .discord-message .content {
    margin-top: 0.25rem;
    color: #eee;
    white-space: pre-wrap;
  }

  .transcript-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: #444;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .transcript-btn i {
    font-size: 14px;
  }
  .transcript-btn:hover {
    opacity: 0.85;
  }
  .no-messages {
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    margin: 2rem 0;
  }

  main.product-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 20px;
  }
  
  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1600px;
    width: 100%;
  }
  
  .product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 340px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #a169f7;
    box-shadow: 0 0 24px rgba(161, 105, 247, 0.3);
  }
  
  .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #000;
  }
  
  .product-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 16px 0 6px;
  }
  
  .product-card .count {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 12px;
  }
  
  .product-card a {
    display: inline-block;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(137, 52, 235, 0.2);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card a:hover {
    background: rgba(161, 105, 247, 0.25);
    box-shadow: 0 0 10px rgba(161, 105, 247, 0.5);
  }
  
  .product-detail-wrapper {
    max-width: 1400px;
    margin: 60px auto;
    color: #fff;
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .product-preview {
    flex: 1 1 500px;
  }
  
  .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    cursor: grab;
  }
  
  .carousel-track.dragging {
    cursor: grabbing !important;
    user-select: none;
  }
  
  .carousel img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
  }
  
  .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
  }
  
  .carousel-buttons button {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 6px;
  }
  
  .preview-thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .preview-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.2s;
  }
  
  .preview-thumbs img.active {
    border-color: #a169f7;
  }
  
  .product-info {
    flex: 1 1 400px;
  }
  
  .product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .product-options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .option-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(8px);
  }
  
  .option-box h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
  }
  
  .option-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 4px;
  }

  .option-box strong {
    font-size: 1.2rem;
    color: #a169f7;
  }

  .carousel-track.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .preview-thumbs img.active {
    border-color: #a169f7;
  }

  .product-description-block {
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    font-size: 1rem;
    color: #ddd;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    line-height: 1.6;
  }

  .option-box {
    cursor: pointer;
    transition: border 0.2s, background 0.2s;
  }

  .option-box.selected {
    border: 2px solid #a169f7 !important;
    background: rgba(161, 105, 247, 0.05);
  }
  
  .btn-buy {
    margin: 20px auto 0;
    width: 50%;
    padding: 12px;
    font-weight: 600;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background 0.2s;
    display: block;
    text-align: center;
  }
  
  .btn-buy:disabled {
    background: #555;
    cursor: not-allowed;
  }
  
  .btn-buy.enabled {
    background: #a169f7;
    cursor: pointer;
  }
  
  .btn-buy.enabled:hover {
    background: #8a45e4;
  }
  
  .modal-custom {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-inner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    padding: 30px;
    color: white;
    width: 400px;
    max-width: 90%;
    position: relative;
  }
  
  .modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 1.4rem;
    cursor: pointer;
  }
  
  .modal-inner label {
    display: block;
    margin: 12px 0 4px;
    font-weight: bold;
  }
  
  .modal-inner input {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: none;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
  }
  
  .buy-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #444;
  }
  
  .buy-btn:enabled {
    cursor: pointer;
    opacity: 1;
    background: #583eed;
  }

  .buy-btn:enabled:hover {
    background: #6d4fff;
  }

  .option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .stock-badge {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.5);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.85rem;
    color: #2ecc71;
  }
  
  .option-box.out-of-stock {
    border-color: #e74c3c;
    background: rgba(231,76,60,0.1);
    cursor: not-allowed;
    opacity: 0.6;
  }

  .stock-badge.out-of-stock {
    background: rgba(231,76,60,0.1);
    border-color: rgba(231,76,60,0.5);
    color: #e74c3c;
  }








/* === En tête de style.css : cacher le menu mobile en desktop === */
@media screen and (min-width: 769px) {
  .burger,
  #mobile-menu,
  #menu-overlay {
    display: none !important;
  }
}

/* === À la fin de style.css : mobile seulement === */
@media screen and (max-width: 768px) {

  /* 1) masquer la navbar desktop (Home / Products / Login) */
  header .nav-links,
  header .nav-buttons {
    display: none !important;
  }

  /* 2) afficher uniquement burger + side-menu */
  .burger,
  #mobile-menu,
  #menu-overlay {
    display: block !important;
  }

  /* 3) style & position du burger */
  .burger {
    position: fixed;
    top: 18px;
    right: 20px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
  }

  /* 4) slide-in du side-menu */
  #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 280px;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(8px);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    background-image: linear-gradient(
      135deg,
      rgba(30, 0, 60, 0.6) 0%,
      rgba(50, 0, 100, 0.6) 50%,
      rgba(30, 0, 60, 0.6) 100%
    );
    background-size: 200% 200%;
    animation: menuBGAnim 8s linear infinite;
  }
  #mobile-menu.open {
    transform: translateX(0);
  }

  /* 5) overlay semi-transparent */
  #menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1500;
  }
  #menu-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

  /* 6) keyframes & liens */
  @keyframes menuBGAnim {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
  }
  #mobile-menu ul {
    list-style: none;
    margin: 60px 0 0;
    padding: 0;
  }
  #mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  #mobile-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
  }
  #mobile-menu a:hover {
    color: #fff;
    transform: translateX(4px);
  }
}


/* ============================================
   ROUE DE NOËL
   ============================================ */

.wheel-section {
  position: relative;
  z-index: 10;
  padding: 80px 20px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 0 20px rgba(161, 105, 247, 0.8);
}

.wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.wheel-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.wheel-pointer {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 40px solid #ff6b00;
  z-index: 10;
  filter: drop-shadow(0 4px 12px rgba(255, 107, 0, 0.8));
  animation: pointerPulse 1.5s infinite;
}

@keyframes pointerPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

#wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 
    0 0 50px rgba(161, 105, 247, 0.6),
    0 0 100px rgba(255, 107, 0, 0.3);
}

.wheel-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-spin {
  padding: 15px 50px;
  font-size: 1.4rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #a169f7, #ff6b00);
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(161, 105, 247, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-spin:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(161, 105, 247, 0.6);
}

.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #555;
}

.countdown {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a169f7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-section {
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.history-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #a169f7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-list {
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.history-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(161, 105, 247, 0.3);
  transform: translateX(5px);
}

.prize-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.prize-name {
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prize-time {
  font-size: 0.9rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rarity-legendary .prize-name {
  color: #ff6b00;
  text-shadow: 0 0 15px rgba(255, 107, 0, 0.6);
}

.rarity-epic .prize-name {
  color: #9b59b6;
  text-shadow: 0 0 15px rgba(155, 89, 182, 0.6);
}

.rarity-rare .prize-name {
  color: #e74c3c;
  text-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
}

.rarity-uncommon .prize-name {
  color: #3498db;
}

.rarity-common .prize-name {
  color: #95a5a6;
}

.no-history {
  text-align: center;
  color: #666;
  padding: 40px;
  font-style: italic;
}

.no-history i {
  font-size: 3rem;
  opacity: 0.3;
  margin-bottom: 15px;
}

.history-list::-webkit-scrollbar {
  width: 8px;
}

.history-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.history-list::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #a169f7, #ff6b00);
  border-radius: 10px;
}

#snowflakes-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -20px;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.8;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  to {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .wheel-wrapper {
    width: 350px;
    height: 350px;
  }

  .wheel-title {
    font-size: 2rem;
  }

  .btn-spin {
    padding: 12px 40px;
    font-size: 1.1rem;
  }

  .countdown {
    font-size: 1.4rem;
  }
}


/* 🔐 Message de connexion requise */
.login-required {
  text-align: center;
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
  border: 2px solid rgba(231, 76, 60, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  margin: 30px auto;
  max-width: 450px;
  animation: pulse 2s ease-in-out infinite;
}

.login-required i.fa-lock {
  font-size: 4rem;
  color: #e74c3c;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(231, 76, 60, 0.5));
}

.login-required h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.login-required p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
  background: linear-gradient(135deg, #4752c4, #3c45a3);
}

.btn-login i {
  font-size: 1.3rem;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .login-required {
    padding: 30px 20px;
    margin: 20px 15px;
  }

  .login-required h3 {
    font-size: 1.5rem;
  }

  .login-required p {
    font-size: 1rem;
  }

  .btn-login {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
