* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Titillium Web';
}


#loading{
    display:none;
    background-color:rgba(255,255,255,0.7);
    position:fixed;
    top:0px;
    left:0;
    width:100%;
    height:100%;
    z-index:100000;
}

.loader {
    border: 5px solid rgba(255, 255, 255, 0.0);
    border-radius: 50%;
    border-top: 5px solid #264d7d;
    width: 130px;
    height: 130px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
    margin-top:300px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:30px;
}

#escolherPrefeitura{
    width: 400px;
    max-width:95%;
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display:block
}

.titulo{
    color:#6a6f7a;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    margin:50px;
    padding:0
}

.tituloForm{
    font-size:20px;
    text-align:center;
    color:#6a6f7a;
}

#sendForm{
    background-color: #006FFF;
    border:none;
    padding:8px 0;
    font-weight:bold;
    font-size:17px;
    margin-top:10px
}

.infoProjeto{
    text-align:center;
    width: 400px;
    margin:0 auto;
    padding:0;
    max-width:95%;
    font-size:12px;
    padding: 0 5px
}