@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #FFFFFF;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

/* Language switcher positioning on login page */
#language-switcher-desktop {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

#language-switcher-desktop #language-switcher {
  position: static;
  top: auto;
  left: auto;
  margin: 0;
}
.login-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(255, 110, 66, 0.08);
  border: 1px solid rgba(255, 110, 66, 0.1);
  max-width: 400px;
  width: 100%;
}
.login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.login-logo img {
  height: 80px;
  width: auto;
  max-width: 100%;
}
h1 {
  color: #2E2E2E;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  display: none;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid #E6E6E6;
  border-radius: 8px;
  transition: all 0.2s;
}
input:focus {
  outline: none;
  border-color: #FF6E42;
  box-shadow: 0 0 0 3px rgba(255, 110, 66, 0.15);
}
button {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: linear-gradient(135deg, #FF6E42 0%, #FFA36A 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 110, 66, 0.3);
  margin-top: 10px;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 110, 66, 0.4);
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.error {
  color: #E03131;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}
.register-link {
  text-align: center;
  margin-top: 20px;
  color: #6C6C6C;
  font-size: 14px;
}
.register-link a {
  color: #FF6E42;
  text-decoration: none;
  font-weight: 600;
}
.register-link a:hover {
  text-decoration: underline;
}
.register-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.register-modal.active {
  display: flex;
}
.register-modal-content {
  background: white;
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.register-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6C6C6C;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.register-modal-close:hover {
  background: #F8F8F8;
  color: #2E2E2E;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

