.dp-form-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.dp-form-wrapper *,
.dp-form-wrapper *::before,
.dp-form-wrapper *::after {
    box-sizing: border-box;
}


.dp-form {
    width: 100%;
    font-family: inherit;
}


.dp-field {
    margin-bottom: 18px;
}


.dp-field label {
    display: block;
    margin-bottom: 6px;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;
}


.dp-field input,
.dp-field textarea {

    display: block;

    width: 100%;

    padding: 13px 14px;

    border: 1px solid #d0d5dd;
    border-radius: 7px;

    background: #fff;

    font-family: inherit;
    font-size: 16px;

    outline: none;
}


.dp-field input:focus,
.dp-field textarea:focus {

    border-color: #3b82f6;

    box-shadow:
        0 0 0 3px rgba(59, 130, 246, 0.15);
}


.dp-field textarea {
    min-height: 150px;
    resize: vertical;
}


.dp-privacy {

    display: flex;

    gap: 9px;

    align-items: flex-start;

    margin-bottom: 18px;

    font-size: 13px;
    line-height: 1.5;
}


.dp-privacy input {

    width: 18px;
    height: 18px;

    flex: 0 0 18px;
}


.dp-submit {

    display: block;

    width: 100%;

    padding: 14px 20px;

    border: none;
    border-radius: 7px;

    font-family: inherit;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}


.dp-legal {

    margin-top: 14px;

    border: 1px solid #e5e7eb;

    border-radius: 7px;

    overflow: hidden;
}


.dp-legal summary {

    padding: 11px 14px;

    font-size: 13px;

    cursor: pointer;
}


.dp-legal-content {

    padding: 0 14px 14px;

    font-size: 13px;
    line-height: 1.6;

    color: #666;
}


.dp-honeypot {

    position: absolute !important;

    left: -99999px !important;

    width: 1px !important;
    height: 1px !important;
}


@media (max-width: 600px) {

    .dp-form-wrapper {
        max-width: 100%;
    }

}