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

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

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

.container {
    width: 75rem;
    height: 41.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.5rem;
    border: 0.0625rem solid #1875E8;
    box-shadow: 0.25rem 0.25rem 1.25rem rgba(1, 8, 14, 0.15);
    background-image: url("img/Ruido.png");
    background-size: cover;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

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

.container__informaciones {
    flex: 1;
    padding: 3rem;
    min-height: 10rem;
}

.container__boton {
    border-radius: 1rem;
    background: #1875E8;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    margin-top: 2rem;
    transition: background 0.3s ease;
}

.container__boton:hover {
    background: #0e5bb5;
}

.container__boton:disabled {
    background: #898989;
}

.container__texto {
    margin: 1rem 0;
}

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

.container__input {
    width: 100%;
    height: 4.5rem;
    border-radius: 1rem;
    background-color: #FFF;
    border: none;
    color: #1875E8;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.container__botones {
    display: flex;
    gap: 2rem;
    margin: auto;
}

h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 4rem;
    padding-bottom: 2rem;
    position: static; /* Mantiene el título sin movimiento */
    text-align: center;
}

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

.texto__parrafo {
    font-size: 2rem;
    font-weight: 400;
}

/* Media Queries */
@media (max-width: 1024px) {
    .container {
        width: 90%;
        flex-direction: column;
        height: auto;
        padding: 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    .texto__parrafo {
        font-size: 1.5rem;
    }

    .container__boton {
        font-size: 1.25rem;
        padding: 0.75rem 1.25rem;
    }

    .container__imagen-persona {
        width: 40%;
        position: relative;
        top: 50px;
        right: 40px;
    }

    .container__input {
        height: 3.5rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .container {
        overflow: auto;
        width: 90%;
    }

    .texto__parrafo {
        font-size: 1.25rem;
        position: relative;
        top: -1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .container__boton {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 85%;
        position: relative;
    }

    .texto__parrafo {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 2rem;
    }

    .container__imagen-persona {
        width: 60%;
        position: relative;
        top: 1rem;
        left: 1rem;
    }

    .container__input {
        height: 2.5rem;
        font-size: 1rem;
        width: 100%;
    }
}
