.form-diagmed-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 6rem 0;
    align-items: center;
    background-color: white;
}
.form-diagmed-2 .content-wrapper {
    width: 54.5rem;
    display: flex;
    flex-direction: column;
}
.form-diagmed-2 .content-wrapper .med-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 4rem;
    align-items: center;
    border-radius: 1rem;
    border: solid 1px #00d5ff;
    background: radial-gradient(white 0%, #00d5ff 1000%);
}
.form-diagmed-2 .content-wrapper .med-form .headline {
    width: 100%;
    text-align: left;
    font-size: 3rem;
    line-height: 2.25rem;
    margin-bottom: 6rem;
    color: #343434;
    font-weight: 500;
}
.form-diagmed-2 .content-wrapper .med-form .form-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 1rem;
    margin-bottom: 4rem;
}
.form-diagmed-2 .content-wrapper .med-form .form-grid .input-container {
    position: relative;
    width: 100%;
    height: 4.5rem;
    background-color: rgba(0, 213, 255, 0.2);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    padding: 0 2.5rem 0 1.5rem;
    gap: 1rem;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .input-container
    .input-end {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #ff0202;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .input-container
    .input-field {
    background-color: unset;
    width: 100%;
    border: none;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #343434;
    text-align: left;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .input-container
    .input-field:focus {
    outline: none;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .input-container
    ::placeholder {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #343434;
    text-align: left;
    min-width: fit-content;
}
.form-diagmed-2 .content-wrapper .med-form .form-grid .textarea-container {
    height: 12rem;
    align-items: flex-start;
    padding: 1.5rem 2.5rem 0 1.5rem;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .textarea-container
    .input-end {
    top: 1.5rem;
    transform: translateY(0%);
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .textarea-container
    .input-field {
    background-color: unset;
    flex-grow: 1;
    border: none;
    font-size: 1.5rem;
    line-height: 1.5rem;
    color: #343434;
    text-align: left;
    height: 100%;
    resize: none;
}
.form-diagmed-2
    .content-wrapper
    .med-form
    .form-grid
    .textarea-container
    .input-field:focus {
    outline: none;
}
.form-diagmed-2 .content-wrapper .med-form .submit-button {
    width: fit-content;
    padding: 0 4.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: radial-gradient(#ff0202 0%, rgba(255, 2, 2, 0.1) 160%);
    box-shadow: 0px 0px 20px #ff020240;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0.5rem;
    border: none;
}

@media (max-width: 96.5rem) {
    .form-diagmed-2 {
        padding: 1.5rem;
    }
    .form-diagmed-2 .content-wrapper {
        width: 100%;
        max-width: 50rem;
    }
    .form-diagmed-2 .content-wrapper .med-form {
        padding: 4rem 4.5rem 3rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .headline {
        text-align: center;
        font-size: 3rem;
        line-height: 3rem;
        margin-bottom: 6rem;
        font-weight: 500;
    }
    .form-diagmed-2 .content-wrapper .med-form .form-grid {
        margin-bottom: 3rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .form-grid .input-container {
        height: 4.5rem;
        padding: 0 2.5rem 0 1.5rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        .input-end {
        right: 1.5rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        .input-field {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        ::placeholder {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .form-grid .textarea-container {
        height: 12rem;
        padding: 1.5rem 2.5rem 0 1.5rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .textarea-container
        .input-end {
        top: 1.5rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .textarea-container
        .input-field {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .submit-button {
        width: 23.3125rem;
        padding: 0 4.5rem;
    }
}
@media (max-width: 43.75rem) {
    .form-diagmed-2 {
        padding: 3rem 1.25rem;
    }
    .form-diagmed-2 .content-wrapper .med-form {
        padding: 2.625rem 1.5rem 1.5rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .headline {
        font-size: 1.5rem;
        line-height: 1.5rem;
        margin-bottom: 2.625rem;
        font-weight: 600;
    }
    .form-diagmed-2 .content-wrapper .med-form .form-grid .input-container {
        height: 3rem;
        padding: 0 2.5rem 0 1rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        .input-end {
        right: 1rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        .input-field {
        font-size: 1rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .input-container
        ::placeholder {
        font-size: 1rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .form-grid .textarea-container {
        height: 7rem;
        padding: 1rem 1.5rem 1rem 1rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .textarea-container
        .input-end {
        top: 1rem;
    }
    .form-diagmed-2
        .content-wrapper
        .med-form
        .form-grid
        .textarea-container
        .input-field {
        font-size: 1rem;
    }
    .form-diagmed-2 .content-wrapper .med-form .submit-button {
        width: 100%;
        padding: 0 2rem;
    }
}
