/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[12].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* ── HOMERENT Design System ─────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --hr-primary:        #1B3A5C;
  --hr-primary-hover:  #254E7A;
  --hr-primary-light:  #EDF2F8;
  --hr-accent:         #C49A3C;
  --hr-accent-light:   #FBF5E6;

  /* Neutral palette */
  --hr-bg:             #F4F2EF;
  --hr-bg-section:     #FFFFFF;
  --hr-text:           #1A1A2E;
  --hr-text-secondary: #64748B;
  --hr-border:         #E2DDD6;

  /* Status */
  --hr-success:        #16A34A;
  --hr-success-light:  #DCFCE7;
  --hr-error:          #DC2626;
  --hr-error-light:    #FEE2E2;
  --hr-warning:        #D97706;
  --hr-warning-light:  #FEF3C7;
  --hr-info:           #1B3A5C;
  --hr-info-light:     #EDF2F8;

  /* Typography */
  --hr-font:           'Inter', 'Segoe UI', 'Arial', sans-serif;

  /* Shape */
  --hr-radius-sm:      6px;
  --hr-radius-md:      10px;
  --hr-radius-lg:      16px;

  /* Elevation */
  --hr-shadow-card:    0 1px 8px rgba(27, 58, 92, 0.07);
  --hr-shadow-raised:  0 4px 20px rgba(27, 58, 92, 0.11);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--hr-font);
  background-color: var(--hr-bg);
  color: var(--hr-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Prevent iOS input zoom (font-size must be ≥ 16px on inputs) ─────── */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
select,
textarea {
  font-size: max(16px, 1em) !important;
}

/* ── Public form page shell ──────────────────────────────────────────── */
.hr-page {
  min-height: 100vh;
  background-color: var(--hr-bg);
  padding: 0;
}

@media (min-width: 481px) {
  .hr-page { padding: 24px 16px; }
}

@media (min-width: 769px) {
  .hr-page { padding: 40px 20px; }
}

/* Card outer wrapper – constrains the card width responsively */
.hr-card-outer {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 481px) {
  .hr-card-outer { max-width: 640px; }
}

@media (min-width: 769px) {
  .hr-card-outer { max-width: 840px; }
}

/* Ant Design card overrides for HOMERENT look */
.hr-form-card .ant-card {
  border-radius: 0;
  box-shadow: none;
  border: none;
}

@media (min-width: 481px) {
  .hr-form-card .ant-card {
    border-radius: var(--hr-radius-lg) !important;
    box-shadow: var(--hr-shadow-raised) !important;
  }
}

.hr-form-card .ant-card-head {
  border-bottom: 1px solid var(--hr-border);
  padding: 20px 20px 16px;
}

@media (min-width: 481px) {
  .hr-form-card .ant-card-head { padding: 24px 28px 20px; }
}

.hr-form-card .ant-card-body {
  padding: 20px 16px;
}

@media (min-width: 481px) {
  .hr-form-card .ant-card-body { padding: 28px; }
}

/* ── Admin layout ─────────────────────────────────────────────────────── */
.hr-admin-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Mobile nav drawer utility */
@media (max-width: 767px) {
  .hr-nav-desktop { display: none !important; }
  .hr-nav-mobile  { display: flex !important; }
}

@media (min-width: 768px) {
  .hr-nav-desktop { display: flex !important; }
  .hr-nav-mobile  { display: none !important; }
}

/* ── Utility classes ─────────────────────────────────────────────────── */
.hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--hr-info-light);
  border: 1px solid #C7D9ED;
  border-radius: 99px;
  font-size: 13px;
  color: var(--hr-primary);
}

.hr-note {
  padding: 10px 14px;
  background: var(--hr-warning-light);
  border-left: 3px solid var(--hr-accent);
  border-radius: 0 var(--hr-radius-sm) var(--hr-radius-sm) 0;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #595959;
}

