/* restaurant_form.css */

#txt_nombre,
/*#txt_idRuc,*/
#txt_direc,
#txt_telf,
#txt_mail,
#ciudad,
#reg {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background-color: #2d3e50;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

#txt_nombre::placeholder,
#txt_idRuc::placeholder,
#txt_direc::placeholder,
#txt_telf::placeholder,
#txt_mail::placeholder,
#ciudad::placeholder {
    color: #bbb;
}

#txt_nombre:focus,
#txt_idRuc:focus,
#txt_direc:focus,
#txt_telf:focus,
#txt_mail:focus,
#ciudad:focus,
#reg:focus {
    outline: none;
    background-color: #3c5770;
    box-shadow: 0 0 4px #03a9f4;
}

.formCliente_box {
    background-color: #1f497d;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.formCliente-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

input[type="submit"],
a.btn.btn-primary,
#consultas_ruc {
    background-color: #03a9f4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-right: 10px;
    font-weight: 500;
}

input[type="submit"]:hover,
a.btn.btn-primary:hover,
#consultas_ruc:hover {
    background-color: #028fcc;
}

#consultas_ruc {
    margin-top: 20px;
    display: block;
    width: 100%;
    text-align: center;
}

#div_rucCed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#txt_idRuc {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px 0px 0px 8px;
    background-color: #2d3e50;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

/*** selctor de ciudad ***/

.grupo_inpuText_btn {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* cambia a stretch para igualar altura */
}

.grupo_inpuText_btn input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    border-radius: 8px 0px 0px 8px;
    color: #000;
}

.grupo_inpuText_btn button {
    padding: 0 16px;
    font-size: 16px;
    background-color: #2196F3;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grupo_inpuText_btn input,
.grupo_inpuText_btn button {
    height: 40px;
    
    /* ajusta según lo necesites */
}