@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');

*{
    margin: 0;
    font-family: 'Inter', sans-serif;
}

body{
    background: linear-gradient(244.5deg, #044C3E -20.02%, #000000 49.88%, #044C3E 122.78%) fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

@media only screen and (min-width: 1024px){
    .wrapper{
        background-color: #F9F9F9;
        box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        width: 67.125rem;
        height: 37.75rem;
        padding-left: 62px;
    }
    
    .elements{
        position: absolute;
    }
    
    .whatsMockup{
        position: absolute;
        width: 400px;
        height: 604px;
        margin-left: 680px;
    
        background: #044C3E;
        box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
    }
    
    .icone{
        margin-top: 129px;
        width: 55px;
        height: 55px;
    }
    .mockup{
        width: 325px;
        height: 559px;
        margin-top: 1em;
        margin-left: 30px;
    }
    
    h1{
        margin-top: 12px;
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 0.05em;
        color: #000000;
    }
    
    p{
        font-weight: 500;
        font-size: 14px;
        margin-top: 12px;
    
        color: #1E1E1E;
    }
    
    input{
        width: 230px;
        height: 36px;
        margin-top: 16px;
        text-decoration: none;
        background: none;
        border: none;
        margin-right: 1em;
    
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: #1E1E1E;
        text-align: center;
    
        border-bottom: 2px solid #1E1E1E;
    
        transition: 0.5s;
    }
    
    input:hover, input:focus{
        box-shadow: 0 0 0 0;
        outline: 0;
        border-bottom: 2px solid #044C3E;
    }
    
    button{
        width: 170px;
        height: 40px;
        margin-top: 25px;
    
        color: #FFF;
        font-weight: 700;
        font-size: 20px;
    
        cursor: pointer;
    
        border: none;
        background: #044C3E;
        border-radius: 5px;
        transition: 0.5s;
    }
    
    button:hover{
        background: #03382d;
    }
}

@media only screen and (max-width: 1024px){
    .wrapper{
        background-color: #F9F9F9;
        box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        width: 40rem;
        height: 37.75rem;
        padding-left: 62px;
        justify-content: center;
        text-align: center;
    }

    .icone{
        margin-top: 129px;
        width: 55px;
        height: 55px;
    }
    
    .whatsMockup, .mockup{
        display: none;
    }
    
    h1{
        margin-top: 12px;
        font-weight: 700;
        font-size: 48px;
        line-height: 58px;
        letter-spacing: 0.05em;
        color: #000000;
    }
    
    p{
        font-weight: 500;
        font-size: 14px;
        margin-top: 12px;
    
        color: #1E1E1E;
    }
    
    input{
        width: 230px;
        height: 36px;
        margin-top: 16px;
        text-decoration: none;
        background: none;
        border: none;
        margin-right: 1em;
    
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: #1E1E1E;
        text-align: center;
    
        border-bottom: 2px solid #1E1E1E;
    
        transition: 0.5s;
    }
    
    input:hover, input:focus{
        box-shadow: 0 0 0 0;
        outline: 0;
        border-bottom: 2px solid #044C3E;
    }
    
    button{
        width: 170px;
        height: 40px;
        margin-top: 25px;
    
        color: #FFF;
        font-weight: 700;
        font-size: 20px;
    
        cursor: pointer;
    
        border: none;
        background: #044C3E;
        border-radius: 5px;
        transition: 0.5s;
    }
    
    button:hover{
        background: #03382d;
    }
}

@media only screen and (max-width: 576px){
    .wrapper{
        background-color: #F9F9F9;
        box-shadow: 0px 0px 50px 5px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        width: 20rem;
        height: 37.75rem;
    }

    .elements{
        justify-content: center;
        text-align: center;
        margin-left: -50px;
    }

    .icone{
        margin-top: 129px;
        width: 55px;
        height: 55px;
    }
    
    .whatsMockup, .mockup{
        display: none;
    }
    
    h1{
        margin-top: 12px;
        font-weight: 700;
        font-size: 32px;
        line-height: 40px;
        color: #000000;
    }
    
    p{
        font-weight: 500;
        font-size: 10px;
        margin-top: 12px;
    
        color: #1E1E1E;
    }
    
    input{
        width: 230px;
        height: 36px;
        margin-top: 16px;
        text-decoration: none;
        background: none;
        border: none;
        margin-right: 1em;
    
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.05em;
        color: #1E1E1E;
        text-align: center;
    
        border-bottom: 2px solid #1E1E1E;
    
        transition: 0.5s;
    }
    
    input:hover, input:focus{
        box-shadow: 0 0 0 0;
        outline: 0;
        border-bottom: 2px solid #044C3E;
    }
    
    button{
        width: 170px;
        height: 40px;
        margin-top: 25px;
    
        color: #FFF;
        font-weight: 700;
        font-size: 20px;
    
        cursor: pointer;
    
        border: none;
        background: #044C3E;
        border-radius: 5px;
        transition: 0.5s;
    }
    
    button:hover{
        background: #03382d;
    }
}