
.user-area{
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(0,45,75);
    background: linear-gradient(90deg, rgba(0,45,75,1) 0%, rgba(0,78,148,1) 100%);
    height: auto;
    padding: 30px 0px;
    border-radius: 25px 25px 0 0;
    margin-top: 10px;
}

.county-title{
    color: #fff;
    text-transform: uppercase;
    font-size:2.25rem ;
    margin-bottom: 20px;
    text-align: center;
}

label{
    background-color: #ffdf1b;
    color: #00529b;
    padding: 5px 10px;
    border-radius: 20px;
}

#estado{
    margin-top: 20px;
    height: 60px;
    width: 50%;
    font-size: 25px;
    color: #00529b;
    text-align: center;
    outline: none;
    border-radius: 40px;
}

.ul-area{
    list-style: none;
    border: 2px solid #00529b;
    padding: 10px;
    height: 70vh;

    overflow-y:scroll;
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    border-radius:  0 0 25px 25px;
}

.ul-area li:nth-child(odd) {
    background-color: #fff;
    color: #00529b;
}
.ul-area li:nth-child(even) {
    background-color: rgb(231, 231, 231);
    color: #00529b;
}

.county-item{
    color: #fff;
    border: 2px solid #fff;
    font-size: 20px;
    padding: 10px;
    transition: all 0.5s;
}

.county-item:hover{
    transform: scale(1.01);
    border: 2px solid #00529b;
}

.county-error{
    color: #fff;
    text-align: center;
    background-color: none;
    font-size: 20px;
    padding: 10px;
}

@media (max-width: 768px) {
#estado{
    margin-top: 20px;
    height: 60px;
    width: 80%;
    font-size: 18px;
    color: #00529b;
    text-align: center;
    outline: none;
    border-radius: 10px;
}}
