/* ============================================================
   ELEVATE HOMES DELHI — style.css (Complete)
   ============================================================ */

/* ── Reset & Variables ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent: #b5451b;
  --accent-light: #c9572b;
  --accent-pale: #f5ede8;
  --white: #ffffff;
  --near-white: #faf7f4;
  --text-dark: #1a1208;
  --text-mid: #4a3f35;
  --text-light: #7a6a5a;
  --nav-bg: #f8f5f0;
  --nav-border: #e2d8ce;
  --amenity-bg: #f7ede7;
  --location-bg: #a0522d;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", sans-serif;
  --nav-h: 72px;
  --max-w: 1440px;
  --ease: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--near-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Shared ────────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  transition: box-shadow var(--ease);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 3px;
  text-align: center;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--accent);
  transition:
    background var(--ease),
    color var(--ease);
}
.nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  background: url("IMG/elevate-home-page-banner.webp") center center / cover
    no-repeat;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 1, 0.45) 0%,
    rgba(5, 3, 1, 0.55) 40%,
    rgba(5, 3, 1, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 60px 80px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 80px;
  max-width: 900px;
}
.feature-item {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.6s ease forwards;
}
.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
  grid-column: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-line {
  width: 52px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
  transition: width var(--ease);
}
.feature-item:hover .feature-line {
  width: 80px;
}
.feature-desc {
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 1.1vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ============================================================
   CONFIGURATIONS
   ============================================================ */
.config-section {
  background: var(--white);
  padding: 56px 0 64px;
}
.config-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.config-rule {
  border: none;
  border-top: 1px dashed #c8bfb5;
  margin-bottom: 36px;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 36px;
  column-gap: 32px;
  max-width: 860px;
}
.config-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: default;
}
.config-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-top: 2px;
}
.config-icon svg {
  width: 100%;
  height: 100%;
}
.config-icon:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}
.config-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.config-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.config-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--white);
  padding: 72px 0 80px;
  border-top: 1px solid var(--nav-border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover .about-img {
  transform: scale(1.03);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.about-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}
.about-text p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-mid);
  text-align: justify;
}

/* ============================================================
   USPs
   ============================================================ */
.usp-section {
  background: var(--near-white);
  padding: 72px 0 80px;
}
.usp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.usp-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.usp-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}
.usp-text p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--text-mid);
  text-align: justify;
}
.usp-list {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.usp-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.usp-img-wrap {
  overflow: hidden;
}
.usp-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.usp-img-wrap:hover .usp-img {
  transform: scale(1.03);
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section {
  background: var(--amenity-bg);
  padding: 72px 0 80px;
}
.amenities-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.amenities-desc {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 100%;
  margin-bottom: 44px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px dashed #c8a898;
  border-top: 1px dashed #c8a898;
}
.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 20px;
  border-right: 1px dashed #c8a898;
  border-bottom: 1px dashed #c8a898;
  transition: background var(--ease);
  cursor: default;
}
.amenity-card:hover {
  background: rgba(181, 69, 27, 0.07);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
}
.amenity-icon svg {
  width: 100%;
  height: 100%;
}
.amenity-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-section {
  width: 100%;
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.location-map {
  position: relative;
  min-height: 480px;
}
.location-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.location-text {
  background: var(--location-bg);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
}
.location-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.location-text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.85;
}

.reachable-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 4px;
}
.reachable-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reachable-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  padding: 36px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  flex-direction: column;
}
.footer-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.footer-logo .logo-sub {
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-cta {
  padding: 10px 26px;
  border: 1px solid var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition:
    background var(--ease),
    color var(--ease);
}
.footer-cta:hover {
  background: var(--accent);
}

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section-inner {
    padding: 0 28px;
  }
  .nav-inner {
    padding: 0 28px;
  }
  .hero-content {
    padding: 50px 40px 70px;
  }
  .features-grid {
    gap: 32px 50px;
  }
  .config-grid {
    max-width: 100%;
  }
  .about-inner {
    gap: 40px;
  }
  .about-img {
    height: 420px;
  }
  .usp-inner {
    gap: 40px;
  }
  .usp-img {
    height: 380px;
  }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-text {
    padding: 44px 36px;
  }
  .footer-inner {
    padding: 0 28px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-inner {
    padding: 0 20px;
  }
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--nav-bg);
    border-top: 1px solid var(--nav-border);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 10px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  /* Hero */
  .hero {
    background-attachment: scroll;
  }
  .hero-content {
    padding: 36px 20px 52px;
  }
  .hero-subtitle {
    margin-bottom: 36px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
  .feature-item:nth-child(5) {
    grid-column: auto;
  }

  /* Config */
  .config-section {
    padding: 44px 0 52px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .config-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  /* About / USP */
  .about-section,
  .usp-section {
    padding: 52px 0 60px;
  }
  .about-inner,
  .usp-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-img,
  .usp-img {
    height: 280px;
  }
  .usp-inner .usp-img-wrap {
    order: -1;
  }

  /* Amenities */
  .amenities-section {
    padding: 52px 0 60px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Location */
  .location-inner {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 300px;
    position: relative;
  }
  .location-text {
    padding: 40px 20px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .logo-name {
    font-size: 1.6rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .config-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form start  */

.contact-section {
  display: flex;
  justify-content: center;
  padding: 50px;
  background: #f5f5f5;
}

form {
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

h2 {
  font-display: "Cormorant Garamond", Georgia, serif;
  text-align: center;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
}

button {
  width: 100%;
  padding: 12px;
  background: #b36a4c;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.error {
  color: red;
  font-size: 12px;
}

#successMsg {
  color: green;
  text-align: center;
  margin-top: 10px;
}

/* floating button */
/* CONTAINER */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* BUTTON BASE */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  animation: pulse 2s infinite;
}

/* CALL */
.call {
  background: #b36a4c;
}

/* WHATSAPP */
.whatsapp {
  background: #25d366;
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.1);
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* MOBILE ADJUST */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
  }
}
.floating-enquire {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
}

.enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background: #b36a4c;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* TEXT HIDE */
.enquire-btn span {
  display: none;
  margin-left: 10px;
}

/* HOVER EXPAND */
.enquire-btn:hover {
  width: 170px;
  border-radius: 30px;
  justify-content: flex-start;
  padding-left: 15px;
}

.enquire-btn:hover span {
  display: inline;
}

/* Form css floating  */

/* BUTTON */
.enquire-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #b36a4c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* BOX */
.popup-box {
  width: 420px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* HEADER */
.popup-header {
  background: #b36a4c;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}

.popup-header h2 {
  margin: 0;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* CONTENT */
.popup-content {
  padding: 20px;
}

/* PROJECT INFO */
.project-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
}

.project-info span {
  font-size: 12px;
  color: gray;
}

.divider {
  width: 1px;
  background: #ddd;
  margin: 0 10px;
}

/* INPUT */
.input-box {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.input-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  margin-left: 10px;
}

.icon {
  font-size: 16px;
}

.flag {
  font-size: 14px;
  margin-right: 10px;
}

/* BUTTON */
button {
  width: 100%;
  padding: 14px;
  background: #b36a4c;
  color: #fff;
  border: none;
  border-radius: 12px;
  margin-top: 15px;
  font-size: 16px;
  cursor: pointer;
}

/* CONSENT */
.consent {
  font-size: 12px;
  margin-top: 10px;
}

.consent a {
  color: blue;
  text-decoration: none;
}

/* ERROR */
.error {
  color: red;
  font-size: 12px;
}
