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

body {
    background: linear-gradient(#1354A5 0%, #041832 33.33%, #041832 66.67%, #01080E 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body::before {
    background-image: url("img/code.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 24px;
    border: 1px solid #1875E8;
    box-shadow: 4px 4px 20px 0px rgba(1, 8, 14, 0.15);
    background-image: url("img/Ruido.png");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 2rem;
}

.container__conteudo {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
}

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

.container__botao {
    border-radius: 16px;
    background: #1875E8;
    padding: 1rem 2rem;
    width: 100%;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    border: none;
    margin-top: 2rem;
    cursor: pointer;
}

.container__texto {
    margin: 16px 0;
}

.container__texto-azul {
    color: #1875E8;
}

.container__input {
    width: 100%;
    border-radius: 16px;
    background-color: #FFF;
    border: none;
    color: #1875E8;
    padding: 1rem;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.container__botoes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    padding-bottom: 2rem;
}

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

.texto__paragrafo {
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 400;
}

button:disabled {
    background-color: gray;
    cursor: not-allowed;
}

/* Responsividade */
@media screen and (max-width: 1250px) {
    .container__imagem-pessoa {
        display: none;
    }

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

    .container__informacoes {
        padding: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .container__botoes {
        flex-direction: column;
        gap: 1rem;
    }

    .container__botao {
        width: 100%;
    }
}