/*Global Styles*/

body {
    background-image: url("../assets/form_bkg.jpg");
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

input:placeholder-shown {
    color: #453e3eac;
}



/*Mobile First*/


/*Title*/

#title_section_container {
    align-items: flex-end;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    width: 90%;
}

#pos_title_section_container {
    margin: 0 auto;
    width: 90%;
}

#pos_title_article_container {
    display: flex;
    flex-direction: column;
    margin: 0 auto 3.5rem;
    width: 90%;
    text-align: center;
}

#pos_h1 {
    margin-bottom: 3.5rem;
    padding: 0;
    font-size: 5rem;
}

#pos_span {
    padding: 0;
    margin: 0;
}

#pos_title_article_container h3 {
    margin-top: 2.5rem;
}

h1 {
    display: flex;
    flex-direction: column;
    color: #453e3e;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 2rem;
    height: 80px;
    margin: 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 100%;
}

h1 span {
    color: #e0280a;
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-size: 3.8rem;
    font-style: italic;
    margin-top: 1rem;
}


/*FORM*/

#user_frm {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    margin: 0 auto;
    width: 90%;
}

/*Nbhd Select*/

#nbhd_select_container {
    background-color: rgba(128, 128, 128, 0.192);
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.5rem;
    width: 100%;
}

#nbhd_select_container label {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

#nbhd_select_container select {
    background-color: white;
    border-radius: .5rem;
}

#default_option {
    color: #453e3e86;
    text-align: center;
}

/*POS Select*/

.select_container {
    background-color: rgba(128, 128, 128, 0.192);
    border-radius: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.5rem;
    width: 100%;
}

.select_container label {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.select_container select {
    background-color: white;
    border-radius: .5rem;
}


#user_frm fieldset {
    align-items: center;
    border-radius: .5rem;
    background-color: rgba(128, 128, 128, 0.192);
    display: flex;
    flex-direction: column;
    /* height: 45rem; */
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    width: 100%;
}

#user_frm fieldset legend {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

#user_frm fieldset label {
    align-self: flex-start;
    margin-bottom: .5rem;
    padding-left: 2rem;
}


#user_frm fieldset input {
    border: solid .1rem rgba(128, 128, 128, 0.329);
    border-radius: .5rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: 90%;
}

#location_div {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    width: 90%;
}

#location_div #location {
    margin: 0;
    width: 65%;
}

#location_div #location::placeholder {
    font-size: 1.2rem;
}

#location_div button {
    background-color: #e0280a;
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    width: 30%;
}

#submit_btn {
    background-color: #e0280a;
    color: white;
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    height: 4rem;
    margin-bottom: 3rem;
    width: 25%;
}

/* Tablets de 7 a 10 pulgadas (mínimo 600px) */
@media (min-width: 700px) {


    #title_section_container {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        width: 63%;
    }

    #pos_title_section_container {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        width: 90%;
    }

    #pos_title_article_container {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: center;
        width: 90%;
    }

    h1 {
        display: flex;
        flex-direction: row;
        font-size: 4rem;
        column-gap: 1rem;
        justify-content: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    h1 span {
        padding-top: 3.1rem;
        font-size: 5rem;
        height: 100%;
        margin: 0;
    }

    #pos_h1 {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
    }

    #pos_span {
        padding: 0;
        margin: 0;
    }

    #user_frm {
        align-items: center;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 1.6rem;
        justify-content: center;
        margin: 0 auto;
        column-gap: 2rem;
        width: 90%;
    }

    #nbhd_select_container {
        width: 70%;
    }
    .select_container {
        width: 70%;
    }

    

    #user_frm fieldset {
        width: 70%;
    }

    #location_div {
        align-items: center;
        display: flex;
        gap: 10px;
        justify-content: space-between;
        width: 90%;
    }

    #location_div #location {
        margin: 0;
        text-align: center;
        width: 65%;
    }

    #location_div #location::placeholder {
        font-size: 2rem;
    }

    #submit_btn {
        width: 50%;
    }
}

/* Monitores pequeños de 13 a 17 pulgadas (mínimo 1025px) */
@media (min-width: 1025px) {}

/* Monitores medianos a grandes de 18 a 22 pulgadas (mínimo 1367px) */
@media (min-width: 1367px) {}

/* Monitores muy grandes (más de 1920px) */
@media (min-width: 1921px) {}