/*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[7].use[3]!./app/[locale]/login/login.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************/
.login_container__2XnTf {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #10131a; /* Using --ink color directly for a deep dark background */
  color: #fff;
  font-family: var(--font-body), "Segoe UI", sans-serif;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture/glow */
.login_container__2XnTf::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.login_card__SE85G {
  width: 100%;
  max-width: 400px;
  text-align: center;
  z-index: 2;
  animation: login_fadeUp__hg3Qa 0.6s ease-out;
}

.login_logo__Dtub1 {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 24px;
}

/* Custom sun/flower icon similar to reference */
.login_logoIcon__SUbFV {
  color: #cc9b6f; /* Muted gold/orange */
}

.login_heading__mGTQT {
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  margin: 0 0 16px;
  color: #e8e6e3; /* Soft white/sand */
  letter-spacing: -0.01em;
}

.login_subheading__wsoci {
  font-size: 16px;
  color: #a1a1aa; /* Muted grey for subtitle */
  margin: 0 0 48px;
  line-height: 1.5;
}

.login_buttonStack__R4Rqw {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.login_socialButton__0qhGf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 999px; /* Pill shape */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.login_socialButton__0qhGf:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
}

.login_socialButton__0qhGf:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.08);
}

.login_iconGoogle__RC6j5 {
  width: 20px;
  height: 20px;
}

.login_facebookButton__ko5vG {
  background-color: #1877f2;
  border-color: #1877f2;
}

.login_facebookButton__ko5vG:hover {
  background-color: #166fe5;
  border-color: #166fe5;
}

.login_loading__e6SHB {
  margin-top: 32px;
  color: #71717a;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  animation: login_fadeIn__vlVP3 0.5s ease-in forwards;
  animation-delay: 1s; /* Show after a delay to simulate loading state for demo */
}

.login_spinner__438bR {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #71717a;
  border-radius: 50%;
  animation: login_spin__GBHmx 1s linear infinite;
}

@keyframes login_fadeUp__hg3Qa {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes login_fadeIn__vlVP3 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes login_spin__GBHmx {
  to { transform: rotate(360deg); }
}

