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

.dhf-room-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.dhf-room-heading h3 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
    color: #ffffff;
}

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

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

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

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

.dhf-room-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-room-submit button:hover {
    background: #e24e4c;
}