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

body {
    background-image: url("../img/imagem.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    background-color: rgba(240, 248, 255, 0.4);
    border-radius: 24px;
    border: 1px solid #8a0303;
    box-shadow: 4px 4px 20px 0px #8a0303;
    width: 60%;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-size: 100% 100%;
}

.container::before {
    background-image: url("../img/ruido.png"); 
    background-repeat: no-repeat;          
    content: "";                          
    display: block;                     
    position: absolute;               
    width: 100%;                       
    height: 100%;                     
}

.container__conteudo {
    display: flex;
    position: absolute;
    flex-direction: column;
    align-items: center;
    bottom: 0;
}

.container__informacoes {
    flex: 1;
    padding: 3rem;
}

.container__botao {
    border-radius: 16px;
    border: none;
    background-color: #080808;
    padding: 16px 24px;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    margin-top: 2rem;  
    cursor: pointer;
}

.container__texto {
    margin: 16px 0 16px 0;
}

.container__input {
    width: 100%;
    height: 72px;
    padding: 2rem;
    border-radius: 16px;
    background-color: #faebd7;
    border: none;
    color: #8a0303;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.container__botoes {
    display: flex;
    gap: 2em;
    justify-content: center;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 72px;
    padding-bottom: 1rem;
}

p,
button {
    font-family: 'Inter', sans-serif;
}

.texto__paragrafo {
    font-size: 32px;
    font-weight: 400;
    text-align: left;
}

button:hover {
    background-color: #666666;
}

button:disabled {
    background-color: #acacac;
}

@media screen and (max-width:340px){
    h1 {
        font-size: 20px;
    }

    .container {
        width: 80%;
        height: 40%;
    }

    .container__botao {
        padding: 10px;
        width: 65px;
        font-size: 10px;
    }

    .texto__paragrafo {
        font-size: 13px;
    }

    .container__conteudo {
        display: block;
        position: inherit;
    }

    .container__informacoes {
        padding: 1rem;
    }

    .container__input {
        width: 100%;
        padding: 10px;
        height: 30%;
        font-size: 10px;
    }
}

@media screen and (min-width:341px) and (max-width:575px){
    h1 {
        font-size: 25px;
    }

    .container {
        width: 80%;
        height: 45%;
    }

    .container__botao {
        padding: 13px;
        width: 90px;
        font-size: 13px;
    }

    .texto__paragrafo {
        font-size: 15px;
    }

    .container__conteudo {
        display: block;
        position: inherit;
    }

    .container__informacoes {
        padding: 1rem;
    }

    .container__input {
        width: 100%;
        padding: 10px;
        height: 40%;
        font-size: 13px;
    }
}

@media screen and (min-width:576px) and (max-width:990px) {
    h1 {
        font-size: 40px;
    }

    .container {
        width: 80%;
        height: 50%;
    }

    .container__botao {
        padding: 16px;
        width: 110px;
        font-size: 16px;
    }

    .texto__paragrafo {
        font-size: 23px;
    }

    .container__conteudo {
        display: block;
        position: inherit;
    }

    .container__informacoes {
        padding: 1rem;
    }

    .container__input {
        width: 100%;
        padding: 15px;
        height: 50%;
        font-size: 16px;
    }
}

@media screen and (min-width:991px) and (max-width:1250px){
    h1 {
        font-size: 60px;
    }

    .container {
        width: 60%;
        height: 80%;
    }

    .container__botao {
        padding: 20px;
        width: 200px;
        font-size: 16px;
    }

    .texto__paragrafo {
        font-size: 30px;
    }

    .container__conteudo {
        display: block;
        position: inherit;
    }

    .container__informacoes {
        padding: 1rem;
    }

    .container__input {
        width: 100%;
        padding: 20px;
        height: 90%;
        font-size: 30px;
    }
}