@import url('../css/navbar.css');

.container {
    width: 80%;
    margin: auto;
    padding-top: 2%;
    padding-bottom: 5%;
}
h2 {
    color: #00476e;
    text-align: center;
}
p {
    text-align: justify;
    line-height: 1.7;
    color: #464545;
}
.info {
    padding-bottom: 3%;
}
.docs {
    width: 100%;
    display: flex;
    justify-content: center;
}
.docs button{
    width: 20%;
    margin: 20px;
}
.seccion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 2%;

}
.docs a {
    padding: 5%;
    text-decoration: none;
    color: white;
}
    
input[type="text"] {
    border-radius: 5px;
    border: 2px solid rgb(145, 145, 145);
    height: 30px;
}
textarea {
    border-radius: 5px;
    border: 2px solid rgb(145, 145, 145);
    height: 70px;
}
form button,
.info button {
    color:white;
    background-color:#00476e;
    border-radius:3px;
    width: 15%;
    height: 30px;
    margin-top:3%;
    border:none;
    transition: background-color 0.4s;
}
.info button {
    height: 50px;
    width: 180px;
}
form button:hover,
.info button:hover {
    background-color:#00476ecc;
}

@media (max-width: 1000px) {
    .docs {
        display: flex;
        flex-direction: column;
    }
    .docs button {
        margin: auto;
        margin-bottom: 20px
    }
    .seccion {
        display: flex;
        flex-direction: column;
    }
    .seccion.tercera {
        display: grid;
    }
    .forms button {
        width: 30%;
    }
}