@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f0f0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    padding: 5vw;
    background-color: #ffffff;
    border-top-left-radius: 2.0833vw;
    border-top-right-radius: 2.0833vw;
    border-bottom-left-radius: 2.0833vw;
    border-bottom-right-radius: 30%;
    display: flex;
    flex-direction: column;
    gap: 1.3889vw;
}

.parte1 {
    display: flex;
    flex-wrap: wrap
}

.parte1 .hijo1 {
    display: flex;
    flex-direction: column;
    gap: 0.6944vw;
    margin-right: 2.0833vw;
}


.hijo1 input {
    /* width: 80%; */
    height: 2.0722vw; 
    border: 1px solid #e2e2e2;
    border-radius: 0.5556vw;
    font-size: 2.2222vw;
    width: 7vw;
    padding: 1.0417vw;
    font-weight: 900;
    display: flex;
    justify-content: start;
    align-items: start;
}


.hijo1 span {
    color: #6b6b6b;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1389vw;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input:focus {
  outline: none;
  border-color: #864cff;
}

.parte2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .parte2 .raya {
    border-top: 1px solid black;
} */

.parte2 .svg {
    width: 4.9444vw;
    height: 4.9444vw;
    background-color: #864cff;
    border-radius: 3.4722vw;
    cursor: pointer;
}

.svg:hover {
    background-color: #000;
}

.svg1 {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.parte3 {
    display: flex;
    flex-direction: column;
    line-height: 4.7222vw;
}

.parte3 span {
    font-size: 5.3333vw;
    font-weight: 900;
    text-shadow: 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000, 0 0 1px #000;
    font-style: italic;
}


.parte3 .x {
    color: #864cff;
    text-shadow: 0 0 1px #864cff, 0 0 1px #864cff, 0 0 1px #864cff, 0 0 1px #864cff;
}

.parte2 hr {
    margin: 0;
    width: 650px;
    border: 1px solid #f0f0f0;
}


@media (min-width: 375px) and (max-width: 430px) {
    section {
        gap: 20px;
    }

    .hijo1 input {
        width: 23vw;
        padding: 2vw;
        height: 8vw;
    }

    .parte2 .svg {
        position: absolute;
        width: 10vw;
        height: 10vw;
        border-radius: 50%;
    }

    .svg1 {
        width: 15px;
    }
    

    .parte2 hr {
        width: 300px;
    }

    .parte3 {
        line-height: 12vw;
    }

    .parte3 span {
        font-size: 15vw;
    }
}
