/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/login/login.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ============================================
   LOGIN PAGE - MARICÁ ECONOMIC PANEL
   Glass Portal Style - Matching Dashboard
   ============================================ */

.loginPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1118 0%, #0d1a28 40%, #0a1520 100%);
  background-image: 
    radial-gradient(ellipse at 30% 70%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(77, 168, 218, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 212, 168, 0.03) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  padding: 20px;
}

/* Ambient glow orbs */
.loginOrb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.loginOrb1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: orbFloat1 15s ease-in-out infinite;
}

.loginOrb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 168, 218, 0.25) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation: orbFloat2 18s ease-in-out infinite;
}

.loginOrb3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.2) 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -20px) scale(1.15); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
}

/* Particles */
.loginParticles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loginParticle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(78, 205, 196, 0.4);
  border-radius: 50%;
  left: var(--x);
  bottom: -10px;
  animation: loginParticleRise var(--duration) ease-in-out var(--delay) infinite;
  box-shadow: 0 0 6px rgba(78, 205, 196, 0.5);
}

@keyframes loginParticleRise {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Main container */
.loginContainer {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
  animation: loginFadeIn 0.8s ease;
}

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

/* Brand section */
.loginBrand {
  text-align: center;
  margin-bottom: 8px;
}

.loginLogoIcon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  animation: logoFloat 4s ease-in-out infinite;
}

.loginLogoIcon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.4));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.loginTitle {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #a0aabb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.loginSubtitle {
  font-size: 18px;
  color: #FF8C42;
  font-weight: 500;
  margin-bottom: 16px;
}

.loginDivider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4ECDC4, #4DA8DA);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.loginBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(45, 212, 168, 0.05));
  border: 1px solid rgba(78, 205, 196, 0.25);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #4ECDC4;
}

.loginBadgeDot {
  width: 8px;
  height: 8px;
  background: #4ECDC4;
  border-radius: 50%;
  animation: badgeDotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px #4ECDC4;
}

@keyframes badgeDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Form */
.loginForm {
  background: rgba(13, 21, 32, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(120, 140, 170, 0.15);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(78, 205, 196, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Glass reflection */
.loginForm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.loginFormHeader {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.loginFormHeader h2 {
  font-size: 22px;
  font-weight: 600;
  color: #E8ECF2;
  margin-bottom: 6px;
}

.loginFormHeader p {
  font-size: 13px;
  color: #A0AABB;
}

/* Error message */
.loginError {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  margin-bottom: 20px;
  animation: errorShake 0.4s ease;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.loginErrorIcon {
  font-size: 18px;
}

.loginError span:last-child {
  font-size: 13px;
  color: #FF6B6B;
  line-height: 1.4;
}

/* Fields */
.loginField {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.loginField label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #A0AABB;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.loginInputWrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.loginInputIcon {
  position: absolute;
  left: 16px;
  font-size: 16px;
  z-index: 1;
  opacity: 0.7;
}

.loginField input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: rgba(20, 35, 55, 0.6);
  border: 1px solid rgba(140, 160, 190, 0.2);
  border-radius: 12px;
  color: #E8ECF2;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.loginField input[name="password"] {
  padding-right: 50px;
}

.loginField input::placeholder {
  color: #6B7A8C;
}

.loginField input:focus {
  outline: none;
  border-color: rgba(78, 205, 196, 0.5);
  background: rgba(20, 35, 55, 0.8);
  box-shadow: 
    0 0 0 3px rgba(78, 205, 196, 0.1),
    0 0 20px rgba(78, 205, 196, 0.1);
}

/* Password toggle button */
.passwordToggle {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #6B7A8C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.passwordToggle:hover {
  color: #4ECDC4;
  background: rgba(78, 205, 196, 0.1);
}

.passwordToggle:focus {
  outline: none;
  color: #4ECDC4;
}

.passwordToggle svg {
  flex-shrink: 0;
}

/* Button */
.loginButton {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 50%, #4DA8DA 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 
    0 4px 20px rgba(78, 205, 196, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.loginButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.loginButton:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(78, 205, 196, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.loginButton:hover:not(:disabled)::before {
  left: 100%;
}

.loginButton:active:not(:disabled) {
  transform: translateY(0);
}

.loginButton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loginButtonArrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.loginButton:hover:not(:disabled) .loginButtonArrow {
  transform: translateX(4px);
}

/* Spinner */
.loginSpinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Footer text */
.loginFooterText {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  color: #6B7A8C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Info section */
.loginInfo {
  text-align: center;
}

.loginInfo p {
  font-size: 11px;
  color: #6B7A8C;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 480px) {
  .loginContainer {
    max-width: 100%;
  }
  
  .loginForm {
    padding: 24px 20px;
  }
  
  .loginTitle {
    font-size: 26px;
  }
  
  .loginLogoIcon {
    width: 64px;
    height: 64px;
  }
}


