@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Montserrat;
    font-size: 0.9375rem;
    font-weight: 400;
    background-color: #f2f3f7;
}

img{
    overflow-clip-margin: content-box;
    overflow: clip;
}

.logo{
    max-height: 75px;
    max-height: calc(60px -(0.25rem* 2));
}

.title-container{
    width: 85%;
    max-width: 85%;
    margin: 0 auto;
    font-weight: 800;
}

.form-container{
    width: 85%;
    max-width: 85%;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 10px;
    border: 1px solid #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

form {
    padding: 20px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input {
    max-width: 300px;
    margin: 15px 0;
    padding: 8px;
    border: 1px solid #8f959e;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

textarea {
    max-width: 800px;
    margin: 15px 0;
    padding: 8px;
    border: 0.5px solid #8f959e;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


button {
    max-width: 300px;
    width: 100px;
    text-align: center;
    border-radius: 10px;
    margin-top: 15px;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#btn-enviar {
    background: #08C2E1;
    border: #08C2E1;
}

#btn-enviar:hover {
    color: #fff;
    background-color: #07a2bc;
    border-color: #0698b0
}

#btn-cancelar {
    background: #ced4da;
    border: #ced4da;
    color: #1d2125;
}

#btn-cancelar:hover {
    color: #1d2125;
    background-color: #b8c1ca;
    border-color: #b1bbc4
}

#page-footer{
    height: 350px;
    margin-top: 20px;
    background-color: #183757;
}
