* {
    padding: 0;
    margin: 0;
}
:root {
--color-bg:#121214;
--color-text-1:#08C05E;
--color-text-2:#A8A8A8;
--color-text-3:#8257E5;
--font-spartan: 'League Spartan', sans-serif;
--font-work-sans: 'Work Sans', sans-serif;

}
body{
    background-image: url(assest/img-bg.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    min-height: 100vh;
    background-size:  contain;
}
body::before{
content: "";
position: fixed;
height: 100%;
width: 50%;
background-color: var(--color-bg);
z-index: -1;
}

div.page {
padding-top: 50px;
padding-left: 35px;
}

h1 {
    font-size: 35px;
    font-family: var(--font-work-sans);
    color: #08C05E;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 100px;
}

h2 {
    color: #fff;
    font-family: var(--font-spartan);
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 9px;
}
main p {
    color: #fff;
    font-family: var(--font-spartan);
    font-size: 20px;
    font-style: normal;
    font-weight: 100;
    line-height: 110%;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
form legend {
    color: var(--color-text-2);
    font-family: var(--font-spartan);
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 17px;
}
form input {
    height: 48px;
    width: 55%;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 48px;
    border: none;
    border-left: 5px solid var(--color-text-1);
    margin-bottom: 70px;    
}
form input:focus{
    font-size: 16px;
   padding-left:10px;            
   outline: none;
}
form img {
   margin-top: 5px;
}
form .img {
    position: absolute;
    height: 48px;
    width: 48px;
    display: inline-block;
}
form button {
    border: none;
    width: 48px;
    height: 48px;
    background-color: #8257E5;
    cursor: pointer;
}

main a {
    text-decoration: none;
    font-size: 25px;
    font-family: var(--font-spartan);
    color: #8257E5;
    font-style: normal;
    font-weight: 700;
    line-height: 138.735%;
}

main .seta-right{
    position: absolute;
    margin-left: 5px;
    margin-top: 5px;
}


/*responsivo*/

@media (max-width:1165px) {
    body::before{
        content: "";
        position: fixed;
        height: 100%;
        width: 100%;
        background-color: var(--color-bg);
        }  
    .page {
        display: flex;
        flex-direction: column;

    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 20px;
    }
main a {
    margin-left: 10%;    
}
.page .logo {
}
}