/* Reddy Anna – Page 09 */
.r9-page {
  --r9-card-bg: #fff;
  --r9-input-bg: #fff;
  --r9-input-border: #000;
  --r9-btn-primary-bg: #1F1A0D;
  --r9-btn-apk-bg: rgb(102 187 106);
  --r9-link: #2563eb;
  --r9-text: #1f2937;
  --r9-muted: #6b7280;
  min-height: 100vh;
  background: linear-gradient(to bottom, #1f1a0e 0%, #403226 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  color: var(--r9-text);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.r9-page *,
.r9-page *::before,
.r9-page *::after { box-sizing: border-box; }

.r9-btn-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r9-btn-close:hover { background: #1a1a1a; }

.r9-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
}

.r9-logo-block {
  text-align: center;
  margin-bottom: 16px;
}
.r9-logo { margin: 0; }
.r9-logo-img {
  display: block;
  width: 200px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto;
}

.r9-card {
  width: 100%;
  max-width: 310px;
  max-height: 403px;
  background: var(--r9-card-bg);
  border-radius: .25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.r9-message {
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  align-self: stretch;
}
.r9-message--success { background: #d1fae5; color: #065f46; }
.r9-message--error { background: #fee2e2; color: #991b1b; }

.r9-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.r9-form-label {
  display: block;
  align-self: stretch;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.50rem;
  font-weight: 600;
  color: var(--r9-text);
  letter-spacing: .06em;
  margin: 0 0 2px 0;
}

.r9-field { width: 100%; align-self: stretch; }

.r9-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.r9-input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 12px;
  border: 1px solid var(--r9-input-border);
  border-radius: 8px;
  background: var(--r9-input-bg);
  font: inherit;
  font-size: 13px;
  color: var(--r9-text);
}
.r9-input::placeholder { color: var(--r9-muted); }
.r9-input:focus {
  outline: none;
  border-color: var(--r9-btn-primary-bg);
  box-shadow: 0 0 0 2px rgba(31, 26, 13, .25);
}

.r9-input-icon,
.r9-btn-toggle-pwd {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--r9-muted);
  pointer-events: none;
}
.r9-btn-toggle-pwd {
  pointer-events: auto;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--r9-muted);
}
.r9-btn-toggle-pwd:hover { color: var(--r9-text); }
.r9-icon-eye-off[hidden] { display: none; }

.r9-forgot-wrap {
  text-align: right;
  margin-top: -4px;
  align-self: stretch;
}
.r9-link {
  color: var(--r9-link);
  text-decoration: none;
  font-size: 12px;
}
.r9-link:hover { text-decoration: underline; }

.r9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 38px;
  padding: 0 16px;
  border: none;
  border-radius: .25rem;
  font: inherit;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--r9-btn-primary-bg);
  transition: background .2s;
}
.r9-btn:hover { filter: brightness(1.08); }
.r9-btn-arrow { flex-shrink: 0; }

.r9-btn--login,
.r9-btn--demo {
  width: 286px;
  height: 38px;
  background: #1F1A0D;
}
.r9-btn--demo {
  background: #1F1A0D;
}

.r9-signup {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--r9-text);
  align-self: stretch;
}
.r9-signup .r9-link { font-weight: 500; }

.r9-recaptcha {
  margin: 0;
  font-size: 10px;
  color: var(--r9-muted);
  line-height: 1.35;
  align-self: stretch;
}
.r9-recaptcha .r9-link { font-size: inherit; }

.r9-btn--apk {
  margin-top: 6px;
  margin-bottom: 14px;
  background: var(--r9-btn-apk-bg);
  color: #fff;
  align-self: stretch;
}
.r9-btn--apk:hover { filter: brightness(1.1); }
.r9-icon-android { flex-shrink: 0; }
