.SignIn_container__EBJL4 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f19 0%, #1a1a2e 100%);
  padding: 2rem;
}

.SignIn_signInCard__0le7y {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.SignIn_title__MwrYv {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #FFD700, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.SignIn_authMethodToggle__b_etr {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 2rem;
}

.SignIn_toggleButton__cEO6B {
  flex: 1 1;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.SignIn_toggleButton__cEO6B.SignIn_active__5iKFd {
  background: var(--primary-color);
  color: #000;
  font-weight: 600;
}

.SignIn_toggleButton__cEO6B:hover:not(.SignIn_active__5iKFd) {
  color: #fff;
}

.SignIn_form__dnP5V {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.SignIn_inputGroup__Hh320 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.SignIn_label__Z2I53 {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.SignIn_input__o8DV_ {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.SignIn_input__o8DV_:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.SignIn_input__o8DV_::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.SignIn_input__o8DV_:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.SignIn_submitButton__2YgOn {
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--primary-color), #B8860B);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.SignIn_submitButton__2YgOn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.SignIn_submitButton__2YgOn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.SignIn_errorMessage__GnSj8 {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.SignIn_footer__Xgbms {
  margin-top: 2rem;
  text-align: center;
}

.SignIn_footer__Xgbms p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.SignIn_link__two25 {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.SignIn_link__two25:hover {
  color: #B8860B;
}

.SignIn_walletConnected__xexOF {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.SignIn_walletNotConnected__skihV {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.SignIn_walletAddress__fn4fI {
  color: #FFD700;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  margin: 0;
}

.SignIn_walletNotConnected__skihV p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 480px) {
  .SignIn_container__EBJL4 {
    padding: 1rem;
  }
  
  .SignIn_signInCard__0le7y {
    padding: 2rem;
  }
  
  .SignIn_title__MwrYv {
    font-size: 1.5rem;
  }
}

