.dhf-hero-wrap {
    width: 100%;
}

.dhf-hero-form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.dhf-hero-field {
    display: flex;
    flex-direction: column;
}

.dhf-hero-field label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.dhf-hero-field input,
.dhf-hero-field select {
    height: 54px;
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    background: #ffffff;
    color: #334155;
    box-sizing: border-box;
}

.dhf-hero-field input::placeholder {
    color: #94a3b8;
}

.dhf-hero-submit button {
    height: 54px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: #f35d5b;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.dhf-hero-submit button:hover {
    background: #e24e4c;
}

@media (max-width: 1024px) {
    .dhf-hero-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .dhf-hero-form {
        grid-template-columns: 1fr;
    }
}