.form-c,
.form-sm {
    display: flex;
    flex-direction: row;
    align-items: center;
    display: flex;
    align-items: center;
}
.form{
    background-color: #f8ebeb9b;
}
.form {

    height: auto;
    padding: 1.5rem;
    margin: 0.8rem;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0,
            100% 12px,
            100% calc(100% - 25px),
            calc(100% - 25px) 100%,
            12px 100%,
            0 calc(100% - 12px));

    img {
        margin-bottom: 70px;
    }
}

.form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--fire-red),
            var(--fire-orange),
            var(--fire-yellow));
}

.form-title {
    font-family: var(--serif-title);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: left;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1;
    position: relative;
    transform: rotate(-2deg);
    padding-bottom: 0.6rem;
}

.form-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--fire-red);
    transform: skewX(-20deg);
}

.form-item {
    margin-bottom: 0.8rem;
    position: relative;
}

.form-item:before {
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.form-item input,
.form-item select,
.form-item textarea {
    width: 100%;
    padding: 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-family: var(--serif-body);
    font-size: 0.9rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    font-family: var(--serif-body);
    font-style: italic;
    color: rgba(0, 0, 0, 0.35);
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
    outline: none;
    border-bottom-color: var(--fire-red);
    background: hsla(0, 0%, 100%, 0.4);
}

.input-feed::placeholder {
    color: #000;
}

.input-feed {
    height: 300px;
    width: 600px;
    margin: 20px;
    font-family: Century Gothic, Lato, sans-serif;
    padding: 10px;
    border-radius: 10px;
    border: transparent;
    background-color: transparent;
    border: 1px solid hsla(0, 0%, 100%, 0.125);
}

.form-c {
    border-top-left-radius: 10px;
    justify-content: left;

    img {
        width: 400px;
        height: auto;
    }

    form {
        flex-direction: column;

        select {
            width: 300px;
        }

        textarea {
            width: 300px;
        }

        input {
            width: 300px;
        }

        button {
            width: 300px;
        }
    }
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: "▼";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: var(--fire-red);
    pointer-events: none;
}

.c {
    color: #d5d2cc;
}

.select-wrapper select {
    appearance: none;
    padding-right: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--serif-body);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .form {
        margin: 0.6rem;
        padding: 1rem;
        height: fit-content;
    }

    .form-title {
        font-size: 1.6rem;
    }

    form {
        height: fit-content;
    }

    #form-c {
        height: fit-content;
    }

    .form,
    form {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        height: fit-content;
    }

    .dttn {
        left: 0;
    }

    .form-item {
        width: 90%;
    }

    .input {
        width: 300px;
    }
}

@media (max-width: 1024px) {
    .form {
        margin: 0.6rem;
        padding: 1rem;
        height: fit-content;
    }
}