body {
    background-color: #fff;
}

.form-section {
    min-height: 100vh;
    /* height: 100vh; */
}

.bottom-cover {
    position: absolute;
    z-index: -3;
    height: 200px;
    width: 100%;
    bottom: 0;
}

section {
    position: relative;
}

.text-theme-primary {
    color: #f3385a;
}

.text-theme-secondary {
    color: #F25270;
}

.card-form {
    border: 6px dashed #f3385a;
    border-radius: 0;
}

.bg-theme-primary {
    background-color: #fdf4f6;
}

.bg-theme-secondary {
    background-color: #ffe4e9;
}

.btn-theme {
    border: none;
    background: linear-gradient(to bottom, #ffaab9 0, #F25270 100%) no-repeat;
    font-weight: bold;
    color: white;
    width: 100%;
}

.btn-theme:hover {
    box-shadow: 0 10px 15px 0 rgb(255 170 185 / 70%);
    transform: translateY(-5px);
    transition: transform 0.3s, box-shadow 0.3s;
}
    
.header-info {
    font-style: italic;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    color: #f3385a;
    text-shadow: 1px 1px 3px #F25270;
}

.header-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-product img {
    height: 500px;
    width: 100%;
    object-fit: contain;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form-top {
    position: relative;
    width: 100%;
    height: 280px;
}

.form-top .product {
    position: absolute;
    height: 100%;
    z-index: 2;
}

.form-top .off {
    position: absolute;
    z-index: 2;
    left: 40px;
    width: 150px;
    height: 150px;
    bottom: -30px;
    animation: beat 3s infinite ease-in-out alternate;
}

.form-top .woman-makeup {
    position: absolute;
    right: 0;
    z-index: 0;
    width: 90%;
    height: 100%;
    box-shadow: 0 4px 15px rgb(0 0 0 / 35%);
    border-radius: 120px 0 0 340px;
}


.wave-bottom::after {
    background-image: url(../images/wave-light.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    position: absolute;
    z-index: -2;
    content: "";
    width: 100%;
    height: 140px;
    transform: rotate(180deg);
    bottom: -30px;
}

.wave-top::before {
    background-image: url(../images/wave-light.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    position: absolute;
    z-index: -2;
    content: "";
    width: 100%;
    height: 140px;
    top: -80px;
}

.wave-bottom-light::after {
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    position: absolute;
    z-index: -2;
    content: "";
    width: 100%;
    height: 140px;
    transform: rotate(180deg);
    bottom: -30px;
}

.wave-top-light::before {
    background-image: url(../images/wave.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0;
    position: absolute;
    z-index: -2;
    content: "";
    width: 100%;
    height: 140px;
    top: -80px;
}

.how-img-container {
    width: 150px;
    height: 150px;
    padding: 30px;
    margin: 0 auto;
    border: 3px solid #F25270;
    background-color: #fff7f8;
    position: relative;
}

.how-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-how {
    width: 30px;
    height: 30px;
    background-color: white;
    position: absolute;
    bottom: -15px;
    left: 57.5px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-bottom .opacity-div,
.form-bottom .bg-form {
    bottom: 0;
}

.bg-form {
    position: absolute;
    bottom: 0;
    z-index: -5;
    width: 100%;
    height: 200%;
    background: url('../images/base.jpg') repeat-x;
    background-position: bottom;
    background-size: cover;
    /* background: rgb(0, 212, 255);
    background: linear-gradient(90deg, rgba(0, 212, 255, 1) 25%, rgba(6, 193, 238, 1) 61%, rgba(25, 130, 180, 1) 100%, rgba(9, 9, 121, 1) 100%, rgba(2, 0, 36, 1) 100%); */
}

.bg-form-top {
    top: 0;
    bottom: unset;
}


@media (max-width:600px) {
    .list {
        font-size: 16px;
    }

    .header-product img {
        padding: 20px 0;
        height: 300px;
    }
}
    
.card-icon {
    text-shadow: none;
    background-color: #f3385a;
    border-radius: 10px;
    color: white;
}

@keyframes beat {
    0% {
        transform: scale(1.0)
    }

    30% {
        transform: scale(1.0)
    }

    40% {
        transform: scale(1.1)
    }

    50% {
        transform: scale(1.0)
    }

    60% {
        transform: scale(1.1)
    }

    70% {
        transform: scale(1.0)
    }

    100% {
        transform: scale(1.0)
    }
}