body {
    background-image: url(/static/bg-teal-3.webp);
}

.review-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-right: 15rem;
        margin-left: 15rem;
    margin-bottom: 3rem;
}

.review-bottom {
    display: flex;
    justify-content: space-between;
}

.review-form {
        margin-right: 15rem;

            margin-left: 15rem;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
}

.textarea-border {
    position: relative;
    border-radius: 9999px;
    display: flex;
    height: 5rem;
}

.textarea-border::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffabf3, #d3fbff);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.textarea-border textarea {
    padding-left: 1rem;
    padding-top: 1.5rem;

    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    border-radius: inherit;
    font-size: 28px;
    color: #dcbed4;
    letter-spacing: -0.32px;
    line-height: 2rem;
    font-size: 20px;
}

.rating-dropdown {
        background-color: #ffabf3;
        border: 0;
    aspect-ratio: 1/1;
    border-radius: 999rem;
    color: #3a3b41;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    text-align: center;
        cursor: pointer;

}

.rating-dropdown:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05),
        0 0 20px 0 rgba(255, 171, 243, 0.3);
}
.textarea-border button {
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    background-color: #d3fbff;
    border: none;
    font-size: 3rem;
        transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.textarea-border button:hover {
    transform: scale(1.02);
    box-shadow:
        inset 0px 0px 0px 1px rgba(255, 255, 255, 0.05),
        0 0 20px 0 rgba(0, 219, 233, 0.3);}

@media screen and (width < 1000px) {
    .review-form {
        margin: 2rem;
    }
    .review-list {
        margin:1rem
    }
    .review-bottom {
        flex-direction: column;
    }
    .review div p {
        font-size: 20px;
    }
    .review-button {
        font-size: 24px;
          padding-top: 3rem;
  padding-bottom: 3rem;
    }
    .review {
        padding: 0rem 3rem 3rem 3rem;
    }
}


