.signup-form {
    overflow: hidden;
    padding-block: 3.5rem;
}

@media (min-width: 768px) {
    .signup-form {
        padding-block: 10rem;
    }
}

.signup-form__button {
    margin-top: 20px;
    width: fit-content;
}

.signup-form__form {
    z-index: 10;
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0 0 1px #020d330d, 0 1px 1px #020d3340, 0 2px 4px -1px #020d331a;
    backdrop-filter: blur(17px);
}

.signup-form__form__outter {
    position: relative;
    max-width: 600px;
    margin-inline: auto;
}

.signup-form__form__outter:before,
.signup-form__form__outter:after {
    border-radius: 0.64731rem;
    background: #fafafa;
    box-shadow: 0 0 0 0.647px #020d330d, 0 0.647px 0.647px #020d3340,
        0 1px 2px -0.647px #020d331a;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0.9);
    position: absolute;
    border-radius: 15px;
    z-index: -1;
    top: -2%;
}

.signup-form__form__outter:before {
    left: -3%;
    rotate: -8deg;
}

@media (min-width: 768px) {
    .signup-form__form__outter:before {
        left: -8%;
        rotate: -5deg;
    }
}

.signup-form__form__outter:after {
    left: 3%;
    rotate: 8deg;
}

@media (min-width: 768px) {
    .signup-form__form__outter:after {
        left: 8%;
        rotate: 5deg;
    }
}

.signup-form__form__title {
    text-align: center;
    font-family: Fraunces;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.04rem;
    color: var(--color-foreground);
}

.signup-form__form__body {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.0175rem;
    color: var(--color-foreground-muted);
}

.signup-form__form__field {
    position: relative;
    border-radius: 10px;
    background: #f7f8fa;
    display: flex;
     height: 2.875rem;
    padding: 0.25rem 1.1875rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    transition: filter 0.15s linear;
}

.signup-form__form__field#message{
    padding:5rem;
}

.signup-form__form__field:is(:focus-within, :hover) {
    filter: brightness(0.975);
}

.signup-form__form__field:not(:first-of-type) {
    margin-top: 0.65rem;
}

.signup-form__form__field:first-of-type {
    margin-top: 1.25rem;
}

.signup-form__form__field:has(input:focus-within,
    input:not(:placeholder-shown)) label {
    position: absolute;
    transform: translateY(-50%);
    top: 0.5rem;
    left: 1.1875rem;
    font-size: 0.725rem;
}

.signup-form__form__input {
    all: unset;
    margin-top: 6px;
    height: 100%;
    width: 100%;
    color: #000;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.0175rem;
}

.signup-form__form__label {
    transition: all 0.15s ease-out;
    user-select: none;
    pointer-events: none;
    color: #9ba3ad;

    font-family: Erply Ladna;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.0175rem;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 4%;
}

textarea::placeholder {
   color: #9ba3ad;
    font-weight: 400;
}

.signup-form__form__field-message textarea#message {
    width: 100%;
    max-width: 505px; 
    height: 150px; 
    position: relative;
    border-radius: 10px;
    background: #f7f8fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    align-items: flex-start;
    align-self: stretch;
    transition: filter 0.15s linear;
}

signup-form__form__field-message:first-of-type {
    margin-top: 1.25rem;
}
.signup-form__form__field-message:is(:focus-within, :hover) {
    filter: brightness(0.975);
}





