html, body, #root {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}

.login-page {
  display: flex;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  overflow: hidden;
}

.brand-panel {
  flex: 1 1 52%;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.form-panel {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

.login-card {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.login-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.login-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.login-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: #1A1A2E;
}

.login-subtitle {
  margin: 0 0 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
}

.field-label {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 6px;
  color: #333;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: left;
  display: block;
}

.login-input {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  margin: 0 0 18px;
  padding: 0 16px;

  background-color: #F5F5F7;
  border: 1px solid #E4E4E8;
  border-radius: 10px;

  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: 0.2s;
}

.login-input:focus {
  background-color: #FFFFFF;
  border-color: #FC5426;
}

.login-input::placeholder {
  color: #A0A0A8;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper .login-input {
  padding-right: 44px;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 22px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #6B6B76;
  opacity: 0.55;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.toggle-password:hover {
  opacity: 0.9;
}

.login-options-row {
  width: 100%;
  box-sizing: border-box;
  margin: -8px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.remember-me-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B6B76;
  cursor: pointer;
  user-select: none;
}

.remember-me-checkbox {
  width: 15px;
  height: 15px;
  accent-color: #FC5426;
  cursor: pointer;
}

.forgot-password-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FC5426;
  text-decoration: none;
  opacity: 0.9;
  white-space: nowrap;
}

.forgot-password-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.login-button {
  background-color: #FC5426;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: flex;
  border-radius: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(252, 84, 38, 0.28);
  transition: 0.2s;
}

.login-button:hover {
  background-color: #e64a1f;
}

.login_button_text {
  margin: 0;
  color: white;
  font-size: 1.05rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.privacy-notice {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: #AAAAAA;
  outline: none;
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.4;
}

.privacy-notice-link {
  color: #FC5426;
  text-decoration: none;
}

.privacy-notice-link:hover {
  text-decoration: underline;
}

.version_text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #AAAAAA;
  outline: none;
  margin: 28px 0 0;
  text-align: center;
}

.version_bussines {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  color: #AAAAAA;
  outline: none;
  margin: 2px 0 0;
  text-align: center;
}

.mfa-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #555;
  text-align: left;
  margin: -6px 0 18px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .brand-panel {
    display: none;
  }

  .form-panel {
    flex: 1 1 100%;
  }
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  background: #FFFFFF;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 20px 45px rgba(20, 18, 30, 0.16);
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(252, 84, 38, 0.1);
  color: #FC5426;
}

.cookie-consent-body {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-consent-text {
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #4A4A58;
}

.cookie-consent-link {
  color: #2D6CDF;
  font-weight: 600;
  text-decoration: none;
}

.cookie-consent-link:hover {
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1 1 auto;
  border-radius: 10px;
  padding: 9px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}

.cookie-btn-decline {
  background: #FFFFFF;
  border-color: #e2e4ee;
  color: #6B6F85;
}

.cookie-btn-decline:hover {
  background: #f7f8fc;
}

.cookie-btn-accept {
  background-color: #FC5426;
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(252, 84, 38, 0.28);
}

.cookie-btn-accept:hover {
  background-color: #e64a1f;
}

@media (max-width: 480px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}
