.dulceria-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 340px;
    z-index: 0;
    background: url('../images/items/dulceriaLading.png') center center/cover no-repeat;
}
header {
    position: relative;
    z-index: 2;
}
.app-container {
    position: relative;
    z-index: 3;
    margin-top: 340px;
}
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #fff;
}
.dulceria-titulo {
    text-align: center;
    font-size: 2.1em;
    font-weight: 700;
    color: #0d3c6e;
    margin-bottom: 32px;
    margin-top: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.dulceria-form-container {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    /* Quitar sombra y contorno */
    box-shadow: none;
    border: none;
    padding: 32px 32px 24px 32px;
}
#form-ciudad-cine {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.dulceria-form-row {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}
.dulceria-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative; /* Necesario para posicionar label */
    margin-top: 10px;
}
/* Estilos Floating Label */
#form-ciudad-cine select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #999; /* Línea gris delgada */
    border-radius: 0;
    font-size: 1.1em;
    color: #0d3c6e;
    padding: 8px 24px 4px 0; /* Espacio derecha para flecha */
    margin-bottom: 0;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    z-index: 2;
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%230d3c6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
#form-ciudad-cine select:focus {
    border-bottom: 2px solid #0d3c6e;
}
#form-ciudad-cine label {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 1.1em;
    color: #5d6c7a; /* Color gris azulado */
    pointer-events: none;
    transition: 0.2s ease all;
    z-index: 1;
    font-weight: 400;
}
/* Cuando el select tiene valor (valid) o foco, mueve el label arriba */
#form-ciudad-cine select:focus ~ label,
#form-ciudad-cine select:valid ~ label {
    top: -14px;
    font-size: 0.85em;
    color: #0d3c6e;
    font-weight: 600;
}
/* Estado deshabilitado */
#form-ciudad-cine select:disabled {
    border-bottom: 1px solid #e0e0e0;
    color: #999;
    cursor: default;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23ccc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
#form-ciudad-cine select:disabled ~ label {
    color: #ccc;
}

#form-ciudad-cine button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d3d8e6;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.8em 2.5em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: none; /* Quitar sombra */
    transition: background 0.2s;
    margin: 0 auto;
    margin-top: 18px;
    min-width: 160px;
}
#form-ciudad-cine button[type="submit"]:not(:disabled) {
    background: #D70242;
    color: #fff;
}
#form-ciudad-cine button[type="submit"]:disabled {
    background: #d3d8e6;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}
#form-ciudad-cine button[type="submit"]::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 900px) {
    .dulceria-bg { height: 180px; }
    .app-container { margin-top: 180px; }
    .dulceria-form-container { padding: 18px 8px 14px 8px; }
    .dulceria-titulo { font-size: 1.3em; }
    .dulceria-form-row { flex-direction: column; gap: 20px; }
}
