@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url('https://fonts.cdnfonts.com/css/avenir-lt-pro');


:root {
    --clr-neon: #4A90E2;
    --primary-color: #4A90E2;
    --secondary-color: #50E3C2;
    --primary-color-dark: #bb0811;
    --bg-dark: #3D424C;
    --bg-light: #3D424C;
    --text-light: #a3a3a3;
    --white: #ffffff;
    --max-width: 1200px;
    --gradient: linear-gradient(to right,
            var(--primary-color),
            var(--secondary-color));
    --gradient2: linear-gradient(to right,
            var(--primary-color),
            var(--bg-dark));
    --gradient6: linear-gradient(45deg, #4A90E2, #3D424C, #878E98);

    --ff-avenir: 'Avenir LT Pro', sans-serif;
}

@keyframes color {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}


body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(./imagenes/ffflurry.svg);
    animation: moveBackground 15s linear infinite;
    background-size: cover;
    color: #fff; 
    overflow-x: hidden;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 0;
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.section {
    padding: 1px 0;
}

.section h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 0 0 5px #4A90E2, 0 0 15px #4A90E2, 0 0 30px #4A90E2, 0 0 50px #4A90E2;
}

.section h2 {
    text-align: center;
    font-size: 2.2em;
}

.section p {
    font-size: 19px;
    margin-bottom: 20px;
    text-align: center; 
}

.left,
.right {
    width: 90%;
}

.left h2 {
    font-size: 2.2rem;
}

.right form {
    display: flex;
    flex-direction: column;
    padding: 30px 45px 35px 35px;
    box-shadow: 0 0 20px rgba(24, 23, 23, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(0.4rem);
    -webkit-backdrop-filter: blur(0.9rem);
    background: #f0ecec;
}

input[type="text"],
input[type="email"],
button {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 10px;
}

input::placeholder {
    color: #757272;
}

label {
    color: #3D424C;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: 0;
    position: relative;
    overflow: hidden;
    border-radius: 10rem;
    transition: all 0.02s;
    font-weight: bold;
    color: #fff;
    z-index: 0; 
    margin-top: 1.5em;
    text-decoration: none;
    background: rgb(0, 140, 255);
    box-shadow: 0 0 10px rgb(0, 140, 255);
}

a:hover {
    box-shadow: 0 0 5px rgb(0, 140, 255),
        0 0 10px rgb(0, 140, 255),
        0 0 20px rgb(0, 140, 255),
        0 0 50px rgb(0, 140, 255);
}


.card {
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
}

.card p {
    font-size: 16px;
}


.left,
.right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.left img {
    max-width: 330px;
    margin-inline: auto;
    margin-bottom: 2rem;
    border-radius: 100%;
    box-shadow: 5px 5px 20px #4A90E2;
}

span {
    text-shadow: 0 0 5px #4A90E2, 0 0 15px #4A90E2, 0 0 30px #4A90E2, 0 0 50px #4A90E2;
} 

.text{
    margin-left: 13em; 
    margin-right: 13em;
}

@media screen and (max-width: 480px) {

    .container {
        flex-direction: column;
    }

    .section h1 {
        font-size: 3.3em;
        text-align: center;
    }

    .left img {
        margin-left: -1em;
        align-items: center;
    }

    .section p {
        margin-left: 1em;
        margin-right: 1em;
    }

    .section h2 {
        margin-left: 1em;
        margin-right: 1em;
    }
}

@media screen and (max-width: 768px) {
    .section p {
        margin-left: 1em;
        margin-right: 1em;
    }

    .left img {
        justify-content: center;
        align-items: center;
    } 

    a {
        padding: 10px 25px; 
     
    }
}

@media screen and (max-width: 1400px) {
    .section p {
        margin-left: 1em;
        margin-right: 1em;
    }

    .section h1 {
        margin-left: 0.5em;
        margin-right: 0.5em;
    }
}