/* Production login shell imports and shared variables */
@import url("./login-layout.css");
@import url("./login-form.css");
@import url("./login-status-bar.css");
@import url("./login-dialer-mode.css");

:root {
  --primary-color: #0f766e;
  --danger-color: #ef4444;
  --card-bg: #ffffff;
  --text-color: #101827;
  --label-color: #48566b;
  --muted-color: #64748b;
  --border-color: #cbd5e1;
  --shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100dvh;
  margin: 0;
}

body {
  padding: clamp(8px, 1.4vh, 16px) 10px;
  color: var(--text-color);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(20, 184, 166, 0.13), transparent 25%),
    linear-gradient(180deg, #f7fbff 0%, #e7edf5 100%);
}

/* TASK-FE-HARD-REFRESH-native-anchor-icon-clean-2026-06-13 */
#btnHardRefresh.status-action-btn,
#btnHardRefresh.status-action-btn:link,
#btnHardRefresh.status-action-btn:visited,
#btnHardRefresh.status-action-btn:hover,
#btnHardRefresh.status-action-btn:active,
#btnHardRefresh.status-action-btn:focus {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  color: inherit;
}

#btnHardRefresh .status-refresh-icon {
  display: block;
  width: 26px;
  height: 26px;
  pointer-events: none;
  text-decoration: none !important;
}

/* Password visibility icon: existing #btnPassToggle only */
#btnPassToggle.pass-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

#btnPassToggle.pass-toggle-btn i {
  display: block;
  width: auto;
  height: auto;
  pointer-events: none;
}

#btnPassToggle.pass-toggle-btn:focus {
  outline: none;
}



/* Exact MOBI SVG copied from /usr/src/webrtc_phone */
.header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header-logo {
  display: block;
  width: min(100%, 430px);
  height: auto;
  max-height: 130px;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .header-logo {
    width: min(90%, 380px);
    max-height: 110px;
  }
}

/* Final exact MOBI SVG override */
.header {
  display: block !important;
  width: 100% !important;
}

.header-logo-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.header-logo {
  display: block !important;
  width: min(100%, 430px) !important;
  height: auto !important;
  max-height: 130px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
}

@media (max-width: 640px) {
  .header-logo {
    width: min(90%, 360px) !important;
    max-height: 105px !important;
  }
}
