﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.demoplaca{

    height:230px;
    background-image:url(../images/demo.jpeg);
    background-repeat:no-repeat;
    background-size:contain;
    border:1px solid #000;
}
.cl-logo{
    height:88%;
    width:20%;
    float:right;
    border:1px solid red;
}
.cl-logo img{
    width:100%;
}


.login-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 380px;
    padding: 35px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .login-card h4 {
        font-weight: 600;
    }

.form-control {
    border-radius: 6px;
}



body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
    background-color: #ffffff;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.navbar-brand {
    font-weight: 600;
    color: #fff !important;
}

.nav-link {
    color: #e0e7ff !important;
    font-weight: 500;
}

    .nav-link:hover {
        color: #ffffff !important;
    }

/* FOOTER */
footer {
    background-color: #0f172a;
    color: #cbd5f5;
}

    footer a {
        color: #93c5fd;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-bottom: 0;
}
.map-form-section {
    min-height: 70vh; /* ocupa gran parte de la pantalla */
}

@media (max-width: 992px) {
    .map-form-section {
        min-height: auto; /* en móviles se ajusta al contenido */
    }
}



/*----------Explorar----------------*/
/* CONTENEDOR */
.filtros {
    background: #f9fafb;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    /* INPUTS */
    .filtros input {
        flex: 1;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid #d1d5db;
        font-size: 14px;
        transition: 0.2s;
    }

        .filtros input:focus {
            outline: none;
            border-color: #6366f1;
            box-shadow: 0 0 0 2px rgba(99,102,241,.2);
        }

    /* BOTÓN */
    .filtros button {
        background: #6366f1;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: 0.2s;
    }

        .filtros button:hover {
            background: #4f46e5;
        }

/* RESPONSIVE */
.form-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width:700px) {
    .form-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/*-------------------*/