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

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


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

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


.container__contenido {
    position: absolute;
    display: flex;
    align-items: center;
}

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

.container__boton {
    width: 100%;
    margin-top: 2rem;
    padding: 16px 24px;
    font-size: 24px;
    font-weight: 700;
    background: #1875E8;
    border: none;
    border-radius: 16px;
}

.container__boton:disabled {
    background: #898989;
}

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

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

.container__input {
    width: 100%;
    height: 72px;
    padding: 2rem;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #1875E8;
    background-color: #FFF;
    border: none;
    border-radius: 16px;
}

.container__botones {
    display: flex;
    gap: 2em;
}

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

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

button:not([disabled]) {
    cursor: pointer;
}

.texto__parrafo {
    font-size: 32px;
    font-weight: 400;
}

.container__contenido img {
    display: none;
}

@media (width >= 768px) {
    .container {
        height: 600px;
    }

    .container__informaciones {
        width: 80%;
        max-width: 650px;
        padding: 3rem;
    }
}

@media (width >= 1024px) {
    .container__contenido img {
        flex-grow: 1;
        display: block;
        width: 20%;
        max-width: 500px;
    }
}