body { 
    /*background-image: linear-gradient(to right top, #005aa3, #0076b1, #008fb4, #00a6b0, #54bbab);*/
    font-family: 'Montserrat', sans-serif;
    background: #f3f4f7;
}

*{
    margin: 0;
    padding: 0; 
}
a {
    transition: all 0.2s ease-in-out 0s;
}


/* Fonts */

@font-face {
	font-family: gilroy;
	src: url(fonts/gilroy.otf);
}


/* Container */

.container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.container-left {
    width: 50%;
    float: left;
    /*background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);*/
    /*background: #f3f4f7;*/
    background: url(img/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
    background-size: 58%;
    background-position: -12% 45%;
    /*
    padding: 0 5%;
    text-align: center;
    height: 100vh;*/
    
}

.left-back {
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: hidden;
    text-align: center;
    color: #333;
    font-family: "gilroy";
    padding: 0;
    height: 300px;
    margin: 0 auto;
    height: 100vh;
}




.container-right {
    width: 40%;
    height: 80vh;
    float: right;
    background: #fff;
    /*background-image: linear-gradient(to right top, #0dca78, #01ca81, #00ca8a, #00ca92, #0cca9a);*/
    /*background: url(img/background.jpg) center bottom no-repeat;*/
    background-size: cover;
    background-attachment: fixed;
    padding: 3% 5%;
    text-align: center;
}

.container-right .logo {
    width: 100%;
    overflow: hidden;
}

.container-right .logo img {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.container-right h2 {
    font-weight: bold;
    font-size: 25px;
    color: #FF0000;
    font-family: 'gilroy', sans-serif;
    margin-bottom: 2px;
}

.container-right .heading-line {
    height: 3px;
    display: block;
    margin-bottom: 15px;
    border-top-width: 3px;
    /*background: linear-gradient(90deg, rgba(10, 191, 83, .87) 0%, rgba(44, 159, 69, 1) 100%);*/
    background: #FF0000;
    width: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.card {
    /*
    background: #ffffff;
    border-radius: 5px;
    padding: 60px 0 40px 0;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    */
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.card:first-child {
    background: #fafafa;
    height: 10px;
    border-radius: 5px 5px 0 0;
    margin: 0 10px;
    padding: 0;
}
.card .title {
    position: relative;
    z-index: 1;
    border-left: 5px solid #ed2553;
    margin: 0 0 35px;
    padding: 10px 0 10px 50px;
    color: #24B86E;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}

.card .input-container {
    position: relative;
    margin: 0 60px 20px;
}
.card .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 50px;
    border: 0;
    color: #212121;
    font-size: 15px;
    font-weight: 400;
    background: transparent;
}
.card .input-container input:focus ~ label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
    width: 50%;
}
.card .input-container input:valid ~ label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.card .input-container label {
    position: absolute;
    top: 0;
    left: 0;
    /*color: #757575;*/
    color: #333;
    font-size: 15px;
    font-weight: 300;
    line-height: 60px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.card .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #757575;
    width: 100%;
    height: 1px;
}
.card .input-container .bar:before,
.card .input-container .bar:after {
    content: '';
    position: absolute;
    background: #FF0000;
    width: 0;
    height: 2px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}
.card .input-container .bar:before {
    left: 50%;
}
.card .input-container .bar:after {
    right: 50%;
}
.card .button-container {
    margin: 0 60px;
    text-align: center;
    margin-top: 50px;
}
.card .button-container button {
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: 0;
    width: 185px;
    border: 2px solid #e3e3e3;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    font-family: 'gilroy', sans-serif;
}
.card .button-container button span {
    position: relative;
    z-index: 1;
    color: #ddd;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.card .button-container button:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background: #FF0000;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.card .button-container button:hover, .card .button-container button:active, .card .button-container button:focus {
    border-color: #FF0000;
}
.card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
    color: #FF0000;
}
.card .button-container button:active span, .card .button-container button:focus span {
    color: #ffffff;
}
.card .button-container button:active:before, .card .button-container button:focus:before {
    opacity: 1;
    -webkit-transform: scale(10);
    transform: scale(10);
}




/*
.container-left {
    width: 45%;
    float: left;
    /* background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12); *
    background: #fff;
    padding: 0 5%;
    margin-top: 80px;
    text-align: center;
    height: 88vh;
}


.container-left h2 {
    font-weight: bold;
    font-size: 25px;
    color: #24B86E;
    font-family: 'gilroy', sans-serif;
    margin-bottom: 20px;
}

.container-left .heading-line {
    height: 3px;
    display: block;
    margin-bottom: 15px;
    border-top-width: 3px;
    background: linear-gradient(90deg, rgba(10, 191, 83, .87) 0%, rgba(44, 159, 69, 1) 100%);
    width: 50px;
    margin: 0 auto;
}

.card {
    /*
    background: #ffffff;
    border-radius: 5px;
    padding: 60px 0 40px 0;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    *
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.card:first-child {
background: #fafafa;
height: 10px;
border-radius: 5px 5px 0 0;
margin: 0 10px;
padding: 0;
}
.card .title {
position: relative;
z-index: 1;
border-left: 5px solid #ed2553;
margin: 0 0 35px;
padding: 10px 0 10px 50px;
    color: #24B86E;
font-size: 32px;
font-weight: 600;
text-transform: uppercase;
}

.card .input-container {
    position: relative;
    margin: 0 60px 50px;
}


.card .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 50px;
    border: 0;
    color: #212121;
    font-size: 24px;
    font-weight: 400;
}
.card .input-container input:focus ~ label {
color: #9d9d9d;
-webkit-transform: translate(-12%, -50%) scale(0.75);
transform: translate(-12%, -50%) scale(0.75);
}
.card .input-container input:focus ~ .bar:before, .card .input-container input:focus ~ .bar:after {
width: 50%;
}
.card .input-container input:valid ~ label {
color: #9d9d9d;
-webkit-transform: translate(-12%, -50%) scale(0.75);
transform: translate(-12%, -50%) scale(0.75);
}

.card .input-container label {
    position: absolute;
    top: 0;
    left: 0;
    /*color: #757575;*
    color: #333;
    font-size: 15px;
    font-weight: 300;
    line-height: 60px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.card .input-container .bar {
position: absolute;
left: 0;
bottom: 0;
background: #757575;
width: 100%;
height: 1px;
}
.card .input-container .bar:before, .card .input-container .bar:after {
content: '';
position: absolute;
background: #24B86E;
width: 0;
height: 2px;
-webkit-transition: .2s ease;
transition: .2s ease;
}
.card .input-container .bar:before {
left: 50%;
}
.card .input-container .bar:after {
right: 50%;
}
.card .button-container {
margin: 0 60px;
text-align: center;
}
.card .button-container button {
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: 0;
    width: 185px;
    border: 2px solid #e3e3e3;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    overflow: hidden;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    font-family: 'gilroy', sans-serif;
}
.card .button-container button span {
position: relative;
z-index: 1;
color: #ddd;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.card .button-container button:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
display: block;
background: #24B86E;
width: 30px;
height: 30px;
border-radius: 100%;
margin: -15px 0 0 -15px;
opacity: 0;
-webkit-transition: .3s ease;
transition: .3s ease;
}
.card .button-container button:hover, .card .button-container button:active, .card .button-container button:focus {
border-color: #24B86E;
}
.card .button-container button:hover span, .card .button-container button:active span, .card .button-container button:focus span {
color: #24B86E;
}
.card .button-container button:active span, .card .button-container button:focus span {
color: #ffffff;
}
.card .button-container button:active:before, .card .button-container button:focus:before {
opacity: 1;
-webkit-transform: scale(10);
transform: scale(10);
}



.container-right {
    width: 35%;
    height: 80vh;
    float: right;
    /*background: #fff;*/
    /*background-image: linear-gradient(to right top, #0dca78, #01ca81, #00ca8a, #00ca92, #0cca9a);*
    background: url(img/background.jpg) center bottom no-repeat;
    background-size: cover;
    background-attachment: fixed;

    padding: 5%;
    text-align: center;
}

.container-right img {
    width: 270px;
    text-align: center;
    margin-bottom: 40px;
}

.container-right h2 {
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    font-family: 'gilroy', sans-serif;
    margin-bottom: 10px;
}

.container-right .heading-line {
    height: 3px;
    display: block;
    margin-bottom: 15px;
    border-top-width: 3px;
    /*background: linear-gradient(90deg, rgba(10, 191, 83, .87) 0%, rgba(44, 159, 69, 1) 100%);*
    background: #fff;
    width: 50px;
    margin: 0 auto;
}

.container-right p {
    color: #fff;
    margin-top: 20px;
}

/*
.container-right h3 {
    margin-bottom: 10px;
}

.container-right h5 {
    font-weight: normal;
    font-style: italic;
    font-size: 12px;
}
*/


/* Alertas */
.alert {
    position: fixed;
    z-index: 9999;
    /*top: 32px;*/
    right: 20px;
    bottom: 10px;

}

.alert p {
    width: 270px;
    margin: 0 auto;
    align-items: stretch;
    background: #ffffff;
    padding: 15px 21px;
    border-radius: 4px;
    box-shadow: 0 4px 10px 0 rgba(19, 30, 32, 0.2), 0 4px 20px 0 rgba(19, 30, 32, 0.19);
    font-family: "Poppins",sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: bold;
}


/* Responsividade */
@media screen and (max-width: 980px) {

    .card .input-container {
        margin: 0 0px 20px;
    }

}

@media screen and (max-width: 870px) {

    .container-left {
        background-size: 70%;
        background-position: -46% 45%;
    }

}

@media screen and (max-width: 720px) {

    .container-left {
        width: 40%;
        background-size: 90%;
        background-position: -390% 45%;
    }

    .container-right {
        width: 50%;
    }

    .card .button-container {
        margin: 0;
    }

}

@media screen and (max-width: 560px) {
    .container-left {
        width: 24%;
        background-size: 101%;
        background-position: 4900% 45%;
    }

    .container-right {
        width: 66%;
    }
}

@media screen and (max-width: 400px) {

    .container-left {
        width: 24%;
        background-size: 148%;
        background-position: 140% 45%;
    }

}