/* Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, code, em, img, small, strong, sub, sup, ol, ul, li, fieldset, form, label, legend, table, tbody, tfoot, thead, tr, th, td, article, aside, footer, header, nav, section, time, audio, video { padding: 0; border: 0; margin: 0; background: transparent; font-size: 100%; font-weight: inherit; vertical-align: baseline; } article, aside, figure, footer, header, nav, section { display: block; } html { box-sizing: border-box; overflow-y: scroll; } html, body { background-color: #fff; color: #000; } *, *::before, *::after { box-sizing: inherit; } img, object { max-width: 100%; } ul { list-style: none; } table { border-collapse: collapse; border-spacing: 0; } th { font-weight: bold; vertical-align: bottom; } td { font-weight: normal; vertical-align: top; } input, select { vertical-align: middle; } input[type='radio'] { vertical-align: text-bottom; } input[type='checkbox'] { vertical-align: bottom; } strong { font-weight: bold; } label, input[type='file'] { cursor: pointer; } input, select, textarea { border: 0; border-radius: 0; margin: 0; } button, input[type='button'], input[type='submit'] { padding: 0; border: 0; border-radius: 0; margin: 0; background: transparent; appearance: none; cursor: pointer; } button::-moz-focus-inner { padding: 0; border: 0; }

/* Estilos */
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.wrapper {
    position: relative;
    width: 100vw;
}

.conteudo {
    position: relative;
    max-width: 1220px;
    min-height: 1058px;
    margin-right: 700px;
    padding: 100px 0 0 0;
    z-index: 10;
}

.conteudo::after {
    content: '';
    position: absolute;
    top: 0;
    right: -265px;
    width: 1485px;
    height: 100%;
    background: url(../images/bg.jpg) no-repeat top right;
    z-index: -1;
}

.conteudo .logo {
    display: block;
    margin: 0 30px 0 auto;
}

.conteudo div {
    margin-top: 350px;
    padding: 0 100px;
}

.conteudo h1 {
    max-width: 830px;
    margin-left: auto;
    margin-bottom: 30px;
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
}

.conteudo p {
    max-width: 410px;
    margin-left: auto;
    padding-left: 10px;
    border-left: 12px solid #91294f;
    color: #fff;
    font-size: 22px;
    line-height: 36px;
    text-transform: uppercase;
}

.cadastro {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 700px;
    padding: 90px 115px 60px;
    text-align: center;
    z-index: 10;
}

.cadastro h2 {
    margin-bottom: 60px;
    color: #2d3c53;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cadastro .logo-pafil {
    display: inline-block;
    margin-top: 100px;
}

form {
    text-align: center;
}

form > * + * {
    margin-top: 16px;
}

input[type=text],
input[type=email] {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #2d3c53;
    border-radius: 12px;
    background-color: #eeeeee;
    font-family: 'Lato', sans-serif;
}

button {
    height: 40px;
    padding: 0 32px;
    border-radius: 12px;
    background-color: #91294f;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

button:hover {
    background-color: #7c1e40;
}

@media (max-width: 1366px) {
    .conteudo h1 {
        font-size: 40px;
    }
    
    .cadastro {
        padding: 90px 150px 60px;
    }
    
    .cadastro .logo-pafil {
        width: 280px;
        margin-top: 60px;
    }
}

@media (max-width: 1280px) {
    .conteudo {
        margin-right: 600px;
    }
    
    .cadastro {
        width: 600px;
    }
}

@media (max-width: 1170px) {
    .conteudo {
        margin-right: 0;
    }

    .conteudo::after {
        right: 0;
    }

    .conteudo div {
        margin-right: 270px;
    }

    .conteudo .logo {
        margin-right: 270px;
    }
    
    .cadastro {
        position: relative;
        width: 100%;
    }
}

@media (max-width: 835px) {
    .wrapper {
        overflow-x: hidden;
    }

    .conteudo::after {
        right: -100px;
    }

    .conteudo .logo {
        margin: 0 auto;
    }

    .conteudo div {
        margin-right: 165px;
        padding: 0 60px;
    }
}

@media (max-width: 630px) {
    .conteudo {
        padding: 190px 40px 0;
    }
    
    .conteudo::after {
        right: -270px;
    }

    .conteudo div {
        margin: 270px -40px 0;
        padding: 0 40px 40px 40px;
        background-color: #2c3c54;
    }

    .conteudo h1 {
        font-size: 32px;
    }

    .conteudo p {
        border-left-width: 8px;
    }

    .cadastro {
        padding: 90px 40px 60px;
    }

    .cadastro .logo-pafil {
        width: 100%;
    }
}