.direccion {
    display: flex;
    justify-content: space-around;
}

.formulario {
    display: flex;
    justify-content: center;
}

.mayusculas p {
    color: #ca2f45;
    font-weight: bold;
}

.alinear-campos {
    color: #ca2f45;
    font-size: 12px;
}

/*---------------------------------*/

form {
    max-width: 450px;
    margin: auto;
    background: rgba(0,0,0,0.1);
    padding: 20px 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px;
}

input, textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 16px;
    border: none;
}

textarea {
    min-height: 100px;
    max-height: 200px;
    max-width: 100%;
}

#boton {
    background: #31384A;
    color: #fff;
    padding: 20PX;
}

#boton:hover {
    cursor: pointer;
}

@media screen and(max-width:480px) {
    form {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .direccion {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .direccion .albacete,.hellin,.laroda {
        margin-bottom: 10px;
    }
}