@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap');

:root {
    --text-dark: #000029;
    --text-placeholder: #AAAAAA;
    --primary-color: rgb(0, 39, 105);
    --primary-color-lighter: rgb(0, 54, 146);
    --secondary-color: rgb(119, 184, 6);
}

.get {
    display: none;
}

body {
    margin: 0;
    padding: 0;
}

.grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
}

.image {
    background: url(../img/bg.jpg) center no-repeat;
    filter: contrast(0.8);
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.image-overlay {
    background-color: rgba(0, 39, 105, 0.61);
    mix-blend-mode: color;
    height: 100%;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 80px;
    box-sizing: border-box;
} 

h1 {
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    margin: 0;
    color: var(--text-dark);
    margin-bottom: 12px;
}

p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    line-height: 36px;
    color: var(--text-dark);
    margin-bottom: 26px;
}

label {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
}

input {
    width: 315px;
    height: 36px;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    padding-left: 15px;
    font-size: 14px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 26px;
    margin-top: 3px;
    box-shadow: 0px 0px var(--secondary-color);
    border-radius: 2px;
    transition: 0.1s;
}

input::placeholder {
    color: var(--text-placeholder);
}

input:focus {
    outline: none;
    box-shadow: 0px 2px var(--secondary-color);
}

button {
    height: 36px;
    width: auto;
    padding-right: 30px;
    padding-left: 30px;
    border-radius: 2px;
    font-family: 'Ubuntu', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.05s;
    cursor: pointer;
    border: none;
}

button:focus {
    outline: none;
}

.btnPrimary {
    background-color: var(--primary-color);
    color: white;
}

.btnPrimary:hover {
    background-color: var(--primary-color-lighter);
}

.btnSecondary {
    background-color: white;
    color: var(--primary-color);
    margin-left: 15px;
    border: 1px solid var(--primary-color);
}

.btnSecondary:hover {
    background-color: whitesmoke;
}

.nota {
    margin-top: 4px;
    font-size: 14px;
}

@media (max-width: 1080px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }
    .content-wrapper {
        padding-bottom: 37px;
        padding-right: 37px;
        padding-left: 37px;
    }
    @media (max-height: 500px){
        .image {
            height: 100%;
        }
        .content-wrapper {
            padding-top: 37px;
            height: auto;
            min-height: 100vh;
            padding-bottom: 37px;
            padding-right: 37px;
            padding-left: 37px;
        }
    }
}

@media (max-width: 792px) {
    .btnPrimary {
        padding-left: 20px;
        padding-right: 20px;
    }
    .btnSecondary {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .grid {
        display: block;
    }
    .image {
        display: none;
    }
    .content-wrapper {
        display: flex;
        align-items: center;
        margin-top: 37px;
        padding-left: 37px;
        padding-right: 37px;
    }
    form {
        width: 100%;
        max-width: 500px;
    }
    input {
        width: 100%;
    }
    button {
        width: 100%;
    }
    .btnSecondary {
        background-color: white;
        color: var(--primary-color);
        margin-left: 0;
        margin-top: 13.7px;
    }
    .btnPrimary:hover {
        background-color: rgb(0, 39, 105);
    }
    .btnSecondary:hover {
        background-color: inherit;
    }
}