/* ======================================
   GGCS Store – Login Page (Final Version)
   Author: GGCS Indonesia
   ====================================== */

/* ========= Base Layout ========= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f9fafc 0%, #e8ecf4 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s ease-in-out;
  padding: 0;
  margin: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= Card ========= */
.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  text-align: center;
  /* border-top: 4px solid #0F2044;  GGCS Blue accent */
}

.login-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

/* ========= Logo ========= */
.logo {
  width: 110px;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* ========= Text ========= */
h2 {
  color: #0F2044;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.3px;
}

p {
  color: #6b7280;
}

.text-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1.2rem;
}

.text-note strong {
  color: #F4B400; /* GGCS Gold */
}

footer p {
  font-size: 0.7rem;
  color: #0F2044;
  opacity: 0.8;
  margin-top: 1.5rem;
}

/* ========= Google Button ========= */
.btn-google {
  background-color: #fff;
  color: #444;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-decoration: none;
}

.btn-google:hover {
  border-color: #0F2044;
  color: #0F2044;
  box-shadow: 0 4px 12px rgba(15, 32, 68, 0.15);
  transform: translateY(-1px);
}

.btn-google:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(15, 32, 68, 0.2);
}

.btn-google:focus {
  outline: 2px solid #0F2044;
  outline-offset: 2px;
}

.btn-google img {
  width: 22px;
  height: 22px;
}

/* ========= Accent Bar ========= */
.accent-bar {
  width: 60px;
  height: 4px;
  background-color: #F4B400;
  border-radius: 9999px;
  margin: 0 auto 1rem;
}

/* ========= Responsive (Mobile) ========= */
@media (max-width: 640px) {
  body {
    padding: 1.5rem;
    background: linear-gradient(145deg, #f9fafc 0%, #e8ecf4 100%);
  }

  .login-card {
    padding: 1.8rem;
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
  }

  .logo {
    width: 95px;
    margin-bottom: 0.75rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .btn-google {
    font-size: 0.85rem;
    padding: 0.55rem 0.8rem;
  }
}

/* ========= Large Screen (Desktop >1200px) ========= */
@media (min-width: 1200px) {
  .login-card {
    max-width: 420px;
  }
}

/* ========= Print ========= */
@media print {
  body {
    background: white !important;
  }
  .login-card {
    box-shadow: none;
  }
}
