@font-face {
    font-family: Montserrat;
    src: url("assets/font/Montserrat-Bold.ttf.ttf");
    font-weight: normal;
}
*,
*::after,
*::before {
    box-sizing: border-box;
}
body {
    font-family: Montserrat;
    background-color: #ededed;
}

.app {
    padding: 2vh 2vw 2vh 2vw;
}

.content {
    max-width: 1040px;
    margin: auto;
}

/* Cabecalho */
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 2vw;
    padding-right: 2vw;
}

.assinaturaImagem {
    width: 25vw;
}

.header h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 400;
}
.header p {
    font-size: 2.5em;
    margin: 0;
    font-weight: 500;
}

/* Seletor de bg */

.seletor-de-bg {
    display: grid;
    grid-template-columns:1fr 1fr;
}

.titulo-bg {
    text-align: center;
    font-size: 1.7em;
}

.seletor-de-bg a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* top right bottom left */
    padding: 0.7em 0.7em 0.7em 0.7em;
    text-align: right;
    border: 1px solid #f5f4f4;
    margin: 1vh;
    border-radius: 2vh;
    font-size: 1.3em;
    background-color: #93da2b;
    text-decoration: none;
    color: #3d3d3d;
}

/* Formulario */

.forms {
    margin-top: 1vw;
    padding: 1vw 1vw 1vw 1vw;
    align-items: center;
}
.forms form {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.form-input {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* top right bottom left */
    padding: 1vh 1vw 1vh 1vw;
    text-align: right;
    border: 1px solid #f5f4f4;
    margin: 1vh;
    border-radius: 2vh;
    font-size: 13pt;
    background-color: #f5f4f4;
}
.form-input p {
    width: 15%;
}
label {
    color: #5b3314;
}
input,
select {
    display: flex;
    outline: none;
    box-sizing: border-box;
    border: 0.12vw  #131212;
    border-radius: 10px;
    height: 40px;
    background-color: #d1d1d1;
    color: #686868;
    width: 75%;
    text-align: left;
    font-family: Montserrat;
    font-size: 12pt;
    padding-left: 10px;
}
input:focus,
select:focus {
    outline: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}
a.download-image {
    border-radius: 10px;
    background-color: #93da2b;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    color: #3d3d3d;
    text-decoration: none;
    padding: 0.5em 2em;
    cursor: pointer;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 25px;

}
a.download-image:hover {
    outline: solid 3px #3d3d3d;
}

/* Botao */
.center-a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}
a:active {
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.5);
}
a h2 {
    font-size: 16px;
    font-weight: 500;
}

/* Rodapé */

footer {
    text-align: center;
}

/* Assinatura */

.assinatura-wrapper {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.assinatura-div {
    background-color: #ffffff;
    display: inline-block;
}

@media (max-width: 800px) {
    .app {
        width: 100vw;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .header {
        width: 100%;
    }
    .header h1 {
        font-size: 32px;
        text-align: center;
    }
    .header p {
        font-size: 16px;
        text-align: center;
    }
    .forms form {
        display: grid;
        grid-template-columns: 1fr;
    }
    input,
    select {
        width: 100%;
    }
    .form-input {
        display: block;
    }
    .form-input p {
        display: block;
        width: auto;
        text-align: start;
    }
    .assinatura-div {
        overflow: hidden;
    }
}
