* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  color: #222;
  background: #fff;
}

.container {
  max-width: 1200px;   /* Idealista-like content width */
  margin: 0 auto;      /* SAME left & right gap */
  padding: 32px 24px;  /* inner spacing */
}

/* HEADER BACKGROUND ONLY */
.header {
  background: #e5f56a;
}

/* REAL LAYOUT CONTAINER */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;

  display: flex;
  align-items: center;
}

/* logo */
.logo {
  font-weight: bold;
  font-size: 18px;
}

/* nav */
.nav {
  margin-left: 24px;
  display: flex;
  gap: 16px;
}
nav.nav a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}
.auth a {
	font-weight: bold;
    color: #000;
    text-decoration: none;
}
h2.title span {
    font-size: 14px;
    color: #5c5c5c;
}
/* right side */
.auth {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  border: 1px solid #000;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
}

h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

h1 span {
  font-size: 16px;
  color: #666;
}

.help {
    color: #000;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

/* PROPERTY */
.property {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.property img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.property a {
  color: #1a73e8;
  font-weight: bold;
  text-decoration: none;
}

/* DATES */
.dates {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input {
  padding: 6px 8px;
  font-size: 14px;
}

/* PRICE */
h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.price {
  max-width: 400px;
}

.price div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.price .total {
  font-weight: bold;
  margin-top: 12px;
}

/* INFO */
h3 {
  margin-top: 32px;
}

.info {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}





    .card-form {
        background: #fff;
        max-width: 500px;
        padding: 20px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .title {
        font-weight: bold;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 12px;
        color: #777;
        margin-bottom: 15px;
    }

    label {
        display: block;
        font-size: 14px;
        margin-bottom: 5px;
    }

    input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
    }

    .row {
        display: flex;
        gap: 15px;
    }

    .row .field {
        flex: 1;
    }

    .icons {
        margin-bottom: 10px;
    }

    .icons img {
        height: 20px;
        margin-right: 5px;
        vertical-align: middle;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        background: #b0176b;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
    }

    .submit-btn:hover {
        background: #951258;
    }
	
	
	
	
	
	
	
	
/* Línea verde a ancho completo */
.help-wrapper {
    border-top: 3px solid #b4d400;
}

/* Contenido centrado */
.help-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.help-section h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.help-section p {
    margin: 0;
    line-height: 1.5;
    color: #555;
}

.help-section a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.help-section a:hover {
    text-decoration: underline;
}

    /* Footer */
    .footer {
        background: #f3f3f1;
        padding: 25px 20px;
    }

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 30px;
}

    .logo {
        font-size: 28px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .copyright {
        color: #666;
        font-size: 14px;
    }

    .copyright span {
        font-weight: bold;
    }	
	
	
.loading-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 999;
}

.loading-popup.show {
    display: flex;
}

/* Vertical stack */
.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Spinner + text on ONE line */
.loading-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

/* White message box */
#adminMessage {
    margin-top: 10px;
    background: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: bold;
}

/* Hide box if empty */
#adminMessage:empty {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


	
	
	
	
	
	
/* LAN */
.skiptranslate {
    display: none;
}
.mylan .lang-dropdown {
  position: relative;
}

.mylan .lang-btn {
  background: #e4f476;
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.mylan .lang-btn img {
  width: 24px;
  height: auto;
}

.mylan .arrow {
  font-size: 12px;
}

.mylan .lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  list-style: none;
  padding: 6px 0;
  margin-top: 5px;
  z-index: 9999;
}

.mylan .lang-menu li {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.mylan .lang-menu li:hover {
  background: #f2f2f2;
}

.mylan .lang-menu img {
  width: 20px;
}

/* Hide Google UI */
.goog-te-banner-frame,
#google_translate_element {
  display: none !important;
}

body {
  top: 0 !important;
}

/* LAN END */	