@import url('https://fonts.googleapis.com/css2?family=Exo:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    background: rgb(132, 58, 243);
    background: linear-gradient(90deg, rgba(132, 58, 243, 1) 0%, rgba(132, 58, 243, 1) 60%, rgba(239, 241, 247, 1) 60%);
}

.form {
    width: 900px;
    max-width: 900px;
    padding: 1em;
    margin: 0 200px 0 auto;
    background: rgb(76, 230, 139);
    background: linear-gradient(90deg, rgba(76, 230, 139, 1) 0%, rgba(76, 230, 139, 1) 10%, rgba(132, 58, 243, 1) 10%, rgba(132, 58, 243, 1) 12%, rgba(132, 58, 243, 1) 12%, rgba(255, 255, 255, 1) 12%, rgba(255, 255, 255, 1) 100%);
    animation: form .40s ease;
    transform: translateX(500px);
}

#form_container_input{
    margin-bottom: 100px !important;
}

p {
    text-align: left;
    font: normal normal bold 23px/31px Exo;
    letter-spacing: 0px;
    color: #363565;
    opacity: 1;
}

small {
    text-align: left;
    font: normal normal 600 13px/17px Noto Sans;
    letter-spacing: 0px;
    color: #9A9E9A;
    opacity: 1;
}

button {
    background: #843AF3 0% 0% no-repeat padding-box;
    border-radius: 5px;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 1;
    text-align: center;
    font: normal normal normal 13px/17px Exo;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    width: 140px;
    height: 42px;
    transition: ease-in-out 0.3s;

}

button:hover {
    opacity: 0.8;
}

.title {
    margin-top: 100px;
}

a {
    text-decoration: none;
    font: normal normal normal 13px/17px Exo;
    letter-spacing: 0px;
    color: #757575;
    opacity: 1;
}

label {
    text-align: left;
    font: normal normal bolder 15px/20px Exo;
    letter-spacing: 0px;
    color: #363565;
    opacity: 1;
}

input {
    width: 85% !important;
    height: 55px;
    border: 1px solid #707070;
    outline: none !important;
    padding: 10px 0 10px 50px !important;
    opacity: .4;
    font: normal normal normal 13px/17px Exo;
    letter-spacing: 0px;
    color: #000;
}

.form_container {
    margin-left: 20%;
}

.buttons {
    width: 85%;
}

#teste {
    width: 100%;
    padding: 15px;
    margin: 4px;
    box-sizing: border-box;
    padding-left: 60px;
}

.effect-1 {
    width: 233px;
    z-index: -1;
    height: 590px;
    background-color: rgb(132, 58, 243);
    filter: brightness(1.07);
    transform: rotate(53deg);
    position: fixed;
    top: -44px;
    left: 70px;
    border-radius: 0px 20px 0px 20px;

}

.effect-2 {
    width: 233px;
    z-index: -1;
    height: 1980px;
    background-color: rgb(132, 58, 243);
    filter: brightness(1.07);
    transform: rotate(53deg);
    position: fixed;
    bottom: -983px;
    left: 70px;
}

.white {
    width: 60%;
    background-color: rgba(239, 241, 247, 1);
    height: 100vh;
    float: left;
}
.svg-icons{
    position: absolute;
    transform: translateY(-39px) translateX(11px);
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
  }

#season-icon {
    width: 27px;
    margin-right: 5px;
    animation: moveUpDown 1.5s ease-in-out infinite;
}

@keyframes form {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(500px);
    }
}

/*MEDIA QUERIES */
@media screen and (max-width: 1000px) {
 
    .form {
        width: 90%;
        background: white;
        margin: 0 auto;
        transform: translateX(0px);
        animation: none;
    }

    .form_container {
        margin: 0;
    }

    input {
        margin-left: 30px !important;
    }

    .effect-1 {
        display: none;

    }

    .effect-2 {
        display: none;
    }

    .white {
        display: none;
    }

    .svg-icons {
        transform: translateY(-39px) translateX(45px);
    }

}
@media screen and (max-width: 580px) {
    button{
        display: block; 
        width: 100%;
    }

    #form-footer{
        display: block !important;
        text-align: center;
    }
    #form-footer-link{
        display: block;
        margin-bottom: 15px;
    }
  
}