/* =========================================
   TINARI KOPI – CLEAN STABLE VERSION
   Design tidak berubah.
   Hanya dirapikan & konflik dihapus.
========================================= */

/* ========== VARIABLES ========== */
:root{
  --bg:#f3efe7;
  --card:#ffffff;
  --accent:#0a5c3b;
  --text:#1b1b18;
  --radius:16px;
  --maxcontent:1200px;
}

/* ========== RESET ========== */
*{box-sizing:border-box}
html,body{
  margin:0;
  font-family:'Poppins',system-ui;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}
img{max-width:100%;height:auto;display:block}

/* ========== CONTAINER ========== */
.container{
  max-width:var(--maxcontent);
  margin:0 auto;
  padding:0 20px;
}

/* ========== HEADER ========== */
.site-header{
  background:var(--accent);
  padding:14px 0;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-family:'Playfair Display',serif;
  font-size:20px;
  margin:0;
  color:#fff;
}

.main-nav{
  display:flex;
  gap:22px;
  align-items:center;
}

.main-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  opacity:.92;
  transition:.2s;
}

.main-nav a:hover{opacity:1}

/* ========== CARD ========== */
.card{
  background:var(--card);
  border-radius:20px;
  padding:40px;
  box-shadow:0 14px 36px rgba(20,20,18,0.04);
  margin:40px auto;
}

/* ========== HERO ========== */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  padding:40px 0;
}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:72px;
  color:var(--accent);
  margin:0 0 12px;
  line-height:.95;
}

.hero-sub{
  color:#9a987f;
  font-size:18px;
  margin-top:18px;
}

.hero-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
}

.hero-logo-wrap{
  max-width:760px;
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 48px rgba(30,30,20,0.07);
  padding:20px;
}

/* ========== BUTTONS ========== */
.btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:28px;
  text-decoration:none;
  font-weight:700;
}
.btn-primary{background:var(--accent);color:#fff}
.btn-ghost{
  background:transparent;
  border:2px solid rgba(10,92,59,0.08);
  color:var(--text);
}

/* ========== MENU SECTION ========== */
#menu.card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:40px;
}

.menu-image-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,420px));
  gap:40px;
  justify-content:center;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

.menu-image-item{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 30px rgba(0,0,0,0.05);
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-image-item img{
  max-height:500px;
  object-fit:contain;
  border-radius:14px;
}

/* ========== GALLERY STATIC GRID ========== */
.gallery-slider{
  margin:1.6rem auto;
  max-width:1100px;
  padding:28px 48px;
  position:relative;
}

.gallery-slider::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:14px;
  background:#fff;
  box-shadow:0 18px 48px rgba(30,30,20,0.06);
  z-index:0;
}

.gallery-grid{
  position:relative;
  z-index:5;
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  justify-content:center;
}

.gallery-item{
  flex:0 0 calc(33.333% - 22px);
  max-width:calc(33.333% - 22px);
  box-shadow:0 10px 30px rgba(20,20,18,0.05);
  border-radius:12px;
}

.gallery-item img{
  width:100%;
  max-height:60vh;
  object-fit:cover;
  border-radius:8px;
}

/* ========== RESERVATION ========== */
.reservation-section{padding:48px 0}

.reservation-card{
  max-width:980px;
  margin:24px auto;
  padding:36px;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 60px rgba(20,20,18,0.07);
}

#reservation-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 28px;
}

#reservation-form .full{grid-column:1/-1}

/* ========== CTA PESAN MEJA ========== */
.small-cta-section{
  display:flex;
  justify-content:center;
  margin:80px 0;
}

.small-cta-inner{
  width:100%;
  max-width:1000px;
  background:#e7dfd3;
  border-radius:28px;
  padding:70px 40px;
  display:flex;
  justify-content:center;
}

.small-cta-card{
  background:#f4f1ec;
  border-radius:24px;
  padding:50px 40px;
  max-width:520px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

/* ========== FOOTER ========== */
.site-footer{
  background:var(--bg);
  padding:70px 20px 40px;
  text-align:center;
}

.footer-inner{
  max-width:800px;
  margin:0 auto;
}

/* ========== RESPONSIVE ========== */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;text-align:center}
  .hero-title{font-size:48px}
  .gallery-item{
    flex:0 0 calc(50% - 22px);
    max-width:calc(50% - 22px);
  }
}

@media(max-width:900px){
  .main-nav{
    overflow-x:auto;
    gap:14px;
  }
  .menu-image-grid{
    grid-template-columns:1fr;
  }
  #reservation-form{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .card{padding:24px;margin:20px}
  .hero-title{font-size:36px}
  .gallery-item{
    flex:0 0 100%;
    max-width:100%;
  }
}
/* ===================================================
   PREMIUM HERO – FORE INSPIRED (TINARI VERSION)
   Tidak merusak section lain
=================================================== */

/* ===== HERO BASE REFINEMENT ===== */
.hero {
  padding: 80px 0;
  position: relative;
}

.hero-title {
  letter-spacing: -1.5px;
  line-height: 0.95;
}

.hero-sub {
  max-width: 440px;
  opacity: 0.85;
}

/* ===== SOFT BACKGROUND GRADIENT ===== */
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10,92,59,0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* ===== BUTTON IMPROVEMENT ===== */
.hero-actions .btn {
  transition: all .25s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(10,92,59,0.25);
}

.hero-actions .btn-ghost:hover {
  background: rgba(10,92,59,0.05);
}

/* ===== FLOATING LOGO EFFECT ===== */
.hero-logo-wrap {
  border-radius: 26px;
  animation: floatLogo 4s ease-in-out infinite;
  transition: transform .3s ease;
}

@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ===== HERO REVEAL ANIMATION ===== */
.hero-title,
.hero-sub,
.hero-actions,
.hero-logo-wrap {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.6s; }
.hero-logo-wrap { animation-delay: 0.8s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= MOBILE HERO CLEAN ================= */
@media (max-width: 900px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.05;
  }

  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-logo-side {
    justify-content: center;
  }

  .hero-logo-wrap {
    width: 72%;
    max-width: 320px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  }

  .hero-actions {
    gap: 14px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    padding: 14px 24px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {

  .hero-title {
    font-size: 38px;
  }

  .hero-logo-wrap {
    width: 80%;
  }
}
/* ===================================================
   PREMIUM FOOTER – TINARI COFFEE
=================================================== */

.site-footer {
  background: var(--bg) !important;
  padding: 80px 20px 50px;
  text-align: center;
  position: relative;
}

/* Subtle top divider */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

/* Footer container */
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Logo styling */
.site-footer img,
.logo-footer {
  width: 55px !important;
  max-width: 55px !important;
  height: auto !important;
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
  transition: all .3s ease;
}

/* Hover animation */
.site-footer img:hover,
.logo-footer:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* Address text */
.site-footer p {
  font-size: 14px;
  color: #6b6b6b;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
}

/* Admin link */
.site-footer a {
  font-size: 13px;
  color: #8c8c8c;
  text-decoration: none;
  transition: 0.25s ease;
  position: relative;
}

/* Underline animation */
.site-footer a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: .3s ease;
  transform: translateX(-50%);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 40px;
  }

  .site-footer img,
  .logo-footer {
    width: 48px !important;
    max-width: 48px !important;
  }

  .site-footer p {
    font-size: 13px;
  }
}
/* =========================================
   MOBILE RESPONSIVE MASTER FIX
   Tidak mengubah desktop
========================================= */

@media (max-width: 768px) {

  /* Container spacing lebih lega */
  .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  /* ===== HERO ===== */
  .hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 50px 0 !important;
  }

  .hero-title {
    font-size: 40px !important;
    line-height: 1.05 !important;
  }

  .hero-sub {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  .hero-logo-side {
    justify-content: center !important;
  }

  .hero-logo-wrap {
    width: 75% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    padding: 16px !important;
  }

  /* ===== BUTTONS ===== */
  .hero-actions {
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .hero-actions .btn {
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  /* ===== MENU SECTION ===== */
  #menu.card {
    padding: 24px 18px !important;
    margin: 30px 16px !important;
  }

  .menu-image-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .menu-image-item {
    padding: 14px !important;
  }

  .menu-image-item img {
    max-height: 320px !important;
  }

  /* ===== GALLERY ===== */
  .gallery-slider {
    padding: 20px 12px !important;
  }

  .gallery-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* ===== CTA SECTION ===== */
  .small-cta-inner {
    padding: 28px 18px !important;
  }

  /* ===== FOOTER ===== */
  .site-footer {
    padding: 50px 20px !important;
  }

}
/* =====================================
   FIX MOBILE HORIZONTAL SPACE
===================================== */

/* Pastikan tidak ada overflow kanan */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Semua section jangan lebih dari layar */
.container,
.hero,
.card,
.gallery-slider,
.reservation-card,
.small-cta-section {
  max-width: 100%;
  box-sizing: border-box;
}

/* Paksa grid & flex tidak melebar */
.menu-image-grid,
.gallery-grid {
  width: 100% !important;
  max-width: 100% !important;
}

/* Hindari 100vw yang bikin overflow */
* {
  max-width: 100%;
}
/* =====================================
   NAVBAR LOGO MINI (MOBILE FRIENDLY)
===================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 34px;
  height: auto;
}

/* Di desktop sedikit lebih kecil biar elegan */
@media (min-width: 992px) {
  .nav-logo {
    width: 30px;
  }
}

/* Di mobile tetap proporsional */
@media (max-width: 768px) {
  .nav-logo {
    width: 28px;
  }
}
/* =====================================
   HIDE HERO LOGO DI MOBILE
===================================== */

@media (max-width: 768px) {
  .hero-logo-side {
    display: none !important;
  }

  .hero {
    text-align: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* =========================================
   DESKTOP PREMIUM POLISH – TINARI
========================================= */

@media (min-width: 1200px) {

  /* =====================================
     GLOBAL CONTAINER BALANCE
  ===================================== */
  .container {
    max-width: 1180px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* =====================================
     NAVBAR MORE PREMIUM
  ===================================== */
  .site-header {
    padding: 18px 0 !important;
  }

  .main-nav a {
    font-size: 14px !important;
    letter-spacing: 0.3px;
  }

  .logo {
    font-size: 20px !important;
  }

  /* =====================================
     HERO REFINEMENT
  ===================================== */

  .hero {
    grid-template-columns: 1.05fr 0.95fr !important;
    align-items: center !important;
    gap: 80px !important;
    padding: 140px 0 120px 0 !important;
    min-height: 88vh;
  }

  .hero-text-block {
    max-width: 640px;
  }

  .hero-title {
    font-size: 76px !important;
    line-height: 0.92 !important;
    letter-spacing: -1.5px;
  }

  .hero-sub {
    font-size: 18px;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 32px;
  }

  /* Logo card lebih elegan */
  .hero-logo-wrap {
    max-width: 520px !important;
    border-radius: 32px !important;
    padding: 32px !important;
  }

  /* =====================================
     SECTION CONSISTENCY
  ===================================== */

  .card {
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 60px !important;
  }

  #menu.card {
    padding: 80px !important;
  }

  .reservation-card {
    max-width: 1000px !important;
  }

  /* =====================================
     MORE BREATHING SPACE
  ===================================== */

  section {
    margin-top: 80px;
    margin-bottom: 80px;
  }

}
/* =========================================
   FOOTER – CLEAN BRAND FINAL VERSION
========================================= */

.site-footer {
  background: var(--bg);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
}

/* Subtle divider line */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.35;
}

/* Footer inner */
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Logo */
.site-footer .logo-footer,
.site-footer img {
  width: 60px !important;
  max-width: 60px !important;
  height: auto !important;
  margin: 0 auto;
  opacity: 0.85;
  transition: 0.3s ease;
}

.site-footer .logo-footer:hover,
.site-footer img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

/* Address text */
.site-footer p {
  font-size: 14px;
  color: #6f6f6f;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto;
}

/* Admin link */
.site-footer a {
  font-size: 13px;
  color: #9a9a9a;
  text-decoration: none;
  transition: 0.25s ease;
  position: relative;
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--accent);
}

/* Underline animation */
.site-footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.site-footer a:hover::after {
  width: 100%;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .site-footer {
    padding: 80px 20px 50px;
  }

  .site-footer .logo-footer,
  .site-footer img {
    width: 50px !important;
    max-width: 50px !important;
  }

  .site-footer p {
    font-size: 13px;
  }
}
/* =========================================
   ABOUT PAGE REFINEMENT – CLEAN VERSION
========================================= */

/* Card utama */
.about-card {
  background: #f3f3f3;
  border-radius: 28px;
  padding: 50px;
  max-width: 1100px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Judul */
.about-card h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* Paragraf */
.about-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Subjudul */
.about-card h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 18px;
}

/* List */
.about-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.about-card ul li {
  margin-bottom: 6px;
}

/* Gambar */
.about-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .about-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 30px;
    margin: 40px 16px;
  }

  .about-card h2 {
    font-size: 26px;
  }

  .about-card p {
    font-size: 15px;
  }

  .about-image img {
    max-height: 380px;
  }

}
/* =====================================
   ABOUT PAGE – CLEAN REFINED VERSION
===================================== */

.about-section {
  padding: 80px 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Title */
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Paragraph */
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Sub section */
.about-block {
  margin-top: 28px;
}

.about-block h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.about-block ul {
  padding-left: 18px;
}

.about-block li {
  margin-bottom: 6px;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .about-section {
    padding: 40px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-image img {
    max-width: 100%;
  }

}
/* =========================================
   ADMIN DASHBOARD – MODERN SaaS STYLE
========================================= */

.admin-dashboard {
  max-width: 1100px;
  margin: 100px auto;
}

.admin-wrapper {
  padding: 60px;
  border-radius: 28px;
}

.admin-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.admin-sub {
  color: #666;
  margin-bottom: 40px;
}

/* ================= STAT BOX ================= */

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-box {
  background: #f4f4f4;
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.25s ease;
}

.stat-box:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
}

.stat-box h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.stat-box span {
  font-size: 20px;
  font-weight: 600;
}

/* ================= MENU GRID ================= */

.admin-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.admin-menu-item {
  background: #f4f4f4;
  padding: 22px 28px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  transition: 0.25s ease;
}

.admin-menu-item:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-menu-grid {
    grid-template-columns: 1fr;
  }

  .admin-wrapper {
    padding: 30px;
  }

}
/* ====================================
   ADMIN SUPER DASHBOARD STYLE
==================================== */

.admin-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
gap: 20px;
margin-bottom: 50px;
}

.stat-box {
background: #f4f4f4;
padding: 25px;
border-radius: 18px;
text-align: center;
transition: .25s ease;
}

.stat-box:hover {
transform: translateY(-4px);
background: var(--accent);
color: #fff;
}

.stat-box span {
font-size: 20px;
font-weight: 600;
display: block;
margin-top: 8px;
}

.stat-box.highlight {
background: var(--accent);
color: #fff;
}

.admin-chart {
margin: 50px 0;
}

.admin-latest table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
}

.admin-latest th,
.admin-latest td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}

.admin-latest th {
background: #f4f4f4;
}
/* ======================
   ADMIN ACTION PANEL
====================== */

.admin-actions {
margin-top: 60px;
}

.admin-actions h3 {
margin-bottom: 20px;
}

.action-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
gap: 20px;
}

.action-card {
background: #fff;
padding: 25px;
border-radius: 20px;
text-decoration: none;
color: #222;
box-shadow: 0 10px 25px rgba(0,0,0,0.06);
transition: 0.3s;
}

.action-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.action-card h4 {
margin-bottom: 8px;
}

.form-edit {
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* 2 kolom */
.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* input Rp */
.input-rp {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.input-rp span {
    background: #f3f3f3;
    padding: 10px;
    font-weight: bold;
}

.input-rp input {
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;
}