.outer_form_container {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
    padding-top: 100px;
}

.subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background-image: url(/assets/enjoy-assets/images/form_bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    width: 90%;
    margin: auto;
    color: white;
}

.form_content {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.form_title {
    font-size: 55px;
    font-weight: 800;
    align-items: center;
    width: 60%;
    margin: auto;
    text-align: center;
    line-height: 50px;
}

.form_description {
    font-weight: 500;
    width: 50%;
    font-size: 18px;
}

.form_fields {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
}

.name_container {
    display: flex;
    width: 50%;
    gap: 10px;
}

.form_field {
    border-radius: 100px;
    min-height: 40px;
    background-color: white;
    border: 1px solid #2A303C;
    text-indent: 20px;
    width: 50%;
    outline: none;
}

.form_field2 {
    border-radius: 100px;
    min-height: 40px;
    background-color: white;
    border: 1px solid #2A303C;
    text-indent: 20px;
    width: 50%;
    outline: none;
}

.subscribe_button {
    width: 20%;
    background-color: white;
    border-radius: 100px;
    min-height: 45px;
    outline: none;
    border: 1px solid #2A303C;
    font-weight: 600;
    cursor: pointer;
}

.right_asset {
    position: absolute;
    bottom: 0;
    right: 0;
}

.left_asset {
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 768px) {
    .right_asset {
        position: absolute;
        bottom: 50px;
        right: 0;
        width: 45%;
    }

    .left_asset {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 25%;
    }

    .form_content {
        padding-top: 80px;
        padding-bottom: 80px;
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .form_title {
        font-size: 35px;
        width: 90%;
        line-height: 38px;
    }

    .form_description {
        font-weight: 500;
        width: 90%;
        font-size: 18px;
        text-align: center;
    }

    .form_fields {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        width: 100%;
    }

    .name_container {
        display: flex;
        width: 90%;
        margin: auto;
        flex-direction: column;
        gap: 20px;
    }

    .form_field {
        border-radius: 100px;
        min-height: 40px;
        background-color: white;
        border: 1px solid #2A303C;
        text-indent: 20px;
        width: 100%;
        outline: none;
    }

    .form_field2 {
        border-radius: 100px;
        min-height: 40px;
        background-color: white;
        border: 1px solid #2A303C;
        text-indent: 20px;
        width: 90%;
        margin: auto;
        outline: none;
    }

    .subscribe_button {
        width: 90%;
        background-color: transparent;
        border-radius: 100px;
        min-height: 45px;
        outline: none;
        color: white;
        border: 1px solid white;
        font-weight: 600;
        cursor: pointer;
    }
}